generated from pierrz/papel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
41 lines (37 loc) · 1022 Bytes
/
.env.example
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
# Here, as reference,
# ports variables are filled with default values
# when possible
# Docker routing
DOCKER_SUBNET_BASE=172.39.0
COMPOSE_PREFIX=dev_
DATA_DIR=/some/path/to/somewhere
LOGS_DIR=/some/path/to/somewhere
HOST_USER_UID=some-uid
# DBs
DB_NAME=some-db-name
# PostgresSQL
POSTGRES_DB=some-admin-d
POSTGRES_USER=some-admin-user
POSTGRES_PASSWORD=some-admin-password
POSTGRES_APP_USER=some-user
POSTGRES_APP_PASSWORD=some-password
# MongoDB
MONGO_INITDB_ROOT_USERNAME=some-admin-user
MONGO_INITDB_ROOT_PASSWORD=some-admin-password
MONGO_USERNAME=some-user
MONGO_PASSWORD=some-password
# Services
# API
API_PORT=8000
# Jupyter
JUPYTER_PASSWORD=some-password
# Orchestrator
CELERY_BROKER_URL=amqp://rabbitmq:5672/
CELERY_RESULT_BACKEND=rpc://rabbitmq:5672/
TOKEN_GITHUB_API=some-long-github-app-token
# Monitoring
# Mongo-Express
ME_CONFIG_MONGODB_ADMINUSERNAME=some-admin-user
ME_CONFIG_MONGODB_ADMINPASSWORD=some-admin-password
ME_CONFIG_BASICAUTH_USERNAME=some-user
ME_CONFIG_BASICAUTH_PASSWORD=some-password