-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env
113 lines (101 loc) · 3.86 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
## General puropse settings
# ------------------------------------------------------------------------------
# This file is designed for settings for LOCAL DEVELOPMENT ONLY
# These should NEVER be used in production
# It can be used a base for production, but
# YOU MUST CHANGE THE SECRETS
# ------------------------------------------------------------------------------
# General
# ------------------------------------------------------------------------------
USE_DOCKER=yes
IPYTHONDIR=/app/.ipython
# protocol for the API in the API schema
API_PROTOCOL=http
# Service URLs
# Redis
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_URL=redis://redis:6379/0
# Celery
CELERY_BROKER_URL=redis://redis:6379/0
# Cache
CACHE_URL=redis://redis:6379/1
# Huey
HUEY_MAX_CONNECTIONS=20
HUEY_ERROR_WEBHOOK=
HUEY_BOUNDLEXX_API_URL_BASE=https://local-boundlexx.wl.mort.is/api/v2/
HUEY_BOUNDLEXX_API_TOKEN=
# PostgreSQL
# ------------------------------------------------------------------------------
POSTGRES_HOST=postgres
POSTGRES_PORT=5432
POSTGRES_DB=boundlexx
# CHANGE THIS FOR PRODUCTION
POSTGRES_USER=vhRZvmiiXCcUzHzbJrkFfCXNArIBsvpm
# CHANGE THIS FOR PRODUCTION
POSTGRES_PASSWORD=M2x55JK7zA8C4WwpT4Sl9HhpYT5RIphpeNzxkX9T3VNPnnfS5ErE0JZkSCfLuGzX
# CHANGE THIS FOR PRODUCTION
DATABASE_URL=postgres://vhRZvmiiXCcUzHzbJrkFfCXNArIBsvpm:M2x55JK7zA8C4WwpT4Sl9HhpYT5RIphpeNzxkX9T3VNPnnfS5ErE0JZkSCfLuGzX@postgres:5432/boundlexx
# Django settings
# ------------------------------------------------------------------------------
# CHANGE THIS FOR PRODUCTION
DJANGO_ALLOWED_HOSTS=*
DJANGO_SECRET_KEY=onNKFNaDsSrXbgHOhL4nymOlUH2gidZz69O9MZEv4IkDa11vznufBvpXLe9u6TMn
TZ=America/New_York
# Debugging settings
# ------------------------------------------------------------------------------
# These should all be False for production
# REMOTE_DEBUGGING will have no effect in production
REMOTE_DEBUGGING=True
DJANGO_DEBUG=True
SERVE_STATIC_FILES_DEV=False
STATIC_URL=/staticdj/
# Prometheus settings
# ------------------------------------------------------------------------------
ENABLE_PROMETHEUS=False
# Other secrets
# ------------------------------------------------------------------------------
EMOJI_API_KEY=
# Azure CDN backend
# ------------------------------------------------------------------------------
# AZURE_ACCOUNT_NAME=
# AZURE_ACCOUNT_KEY=
# AZURE_CONTAINER=
# AZURE_CUSTOM_DOMAIN=
# Boundless Secrets
# ------------------------------------------------------------------------------
# Price delay config
BOUNDLESS_MIN_ITEM_DELAY=20
BOUNDLESS_BASE_ITEM_DELAY=60
BOUNDLESS_POPULAR_ITEM_DELAY_OFFSET=5
BOUNDLESS_INACTIVE_ITEM_DELAY_OFFSET=30
BOUNDLESS_MAX_ITEM_DELAY=720
BOUNDLESS_DEAD_ITEM_MULTIPLIER=1
# Forum posting
BOUNDLESS_FORUM_BASE_URL=https://forum.playboundless.com
BOUNDLESS_FORUM_POST_USER=
BOUNDLESS_FORUM_POST_KEY=
# Should only be false if you are building against a local Creative universe
BOUNDLESS_DS_REQUIRES_AUTH=False
# enable if you are running against a `testing` build of the game
# for features that may slightly differ between the `public` build
BOUNDLESS_TESTING_FEATURES=False
# This should point to the base URL of the Boundless discovery server
# for local Creative, this is the IP of the machine Boundless is running + port 8950
# For Docker for Windows/Mac, `host.docker.internal` references the host machine
# For testing: https://ds-testing.playboundless.com:8902
# For live: https://ds.playboundless.com:8902
BOUNDLESS_API_URL_BASE=http://host.docker.internal:8950
# API key for protected endpoints
BOUNDLESS_API_KEY=
# This MUST be overriden in env specific .env file
BOUNDLESS_USERNAMES=
# All three of these are REQUIRED if BOUNDLESS_DS_REQUIRES_AUTH
BOUNDLESS_PASSWORDS=
STEAM_USERNAMES=
STEAM_PASSWORDS=
# Production Secrets
# ------------------------------------------------------------------------------
# CELERY_FLOWER_USER=
# CELERY_FLOWER_PASSWORD=
# DJANGO_SETTINGS_MODULE=config.settings.production