-
Notifications
You must be signed in to change notification settings - Fork 33
/
example-env
83 lines (59 loc) · 2.2 KB
/
example-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
# Hostname for Tator
MAIN_HOST=localhost
# External port for Tator
PORT=8080
# Docker registry for Tator images
REGISTRY=cvisionai
# Path to local Tator data directory
DATA_DIR=${HOME}/tator_data
# Django secret key
DJANGO_SECRET_KEY="9q@$1)+x+zh-3csau(zqhheos2e+ncygac#ol2)1@x2w#kkaer"
# Postgres settings
POSTGRES_HOST=postgis
POSTGRES_USER=django
POSTGRES_PASSWORD=django123
# Internal Gunicorn host
GUNICORN_HOST=http://gunicorn
# Redis host
REDIS_HOST=redis
# Transcode service host
TRANSCODE_HOST=http://transcode
# Bucket config
DEFAULT_LIVE_ACCESS_KEY=AKIAIOSFODNN7EXAMPLE
DEFAULT_LIVE_SECRET_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
DEFAULT_LIVE_ENDPOINT_URL=http://minio:9000
DEFAULT_LIVE_REGION_NAME=us-east-2
DEFAULT_LIVE_BUCKET_NAME=tator
DEFAULT_ALT_BUCKET_NAME=tator-alt
DEFAULT_LIVE_STORE_TYPE=MINIO
DEFAULT_LIVE_EXTERNAL_HOST=http://${MAIN_HOST}:${PORT}/objects
MINIO_ACCESS_KEY=minioadmin
MINIO_SECRET_KEY=minioadmin
# How many days to wait before actually deleting deleted files
EXPIRATION_AGE_DAYS=0
# How many days to wait before archiving media where this has been requested
ARCHIVE_AGE_DAYS=7
# Whether any user can sign up at /registration without needing an invitation
ANONYMOUS_REGISTRATION_ENABLED=true
# Whether to automatically create organizations for new users
AUTOCREATE_ORGANIZATIONS=true
# Whether to allow organization creation by non-staff users
ALLOW_ORGANIZATION_POST=true
# Whether to enable anonymous gateway (public projects)
ANONYMOUS_GATEWAY_ENABLED=true
##########################################################################
# Developer settings
##########################################################################
# Whether to minify javascript
USE_MIN_JS=true
# Whether this is a compose deployment (always true for OSS)
COMPOSE_DEPLOY=true
STATSD_ENABLED=false
AUDIT_ENABLED=false
# How long in seconds static files should be cached by browsers (set to 0 to disable caching, as in development)
STATIC_MAX_AGE=2592000
# If using localhost it is recommended to use the following setting
# This allows for docker containers to utilize localhost to mean the host machine
#MASQUARADE_LOCALHOST_IP=<LAN_IP>
# Set this true to enable alt bucket tests
HAS_ALT_BUCKET=true