-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
94 lines (75 loc) · 2.11 KB
/
.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
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
# This file should be copied to .env and edited as needed. It is here
# to give an idea of what config values you might want to change, and it
# is read by laravel when it starts up. You can also set these values
# in the environment to override these values (e.g., when running in
# kubernetes)
# This file is also used by the docker-compose.yml file to set some
# environment variables for development.
# (.env is not in the repository because it contains secrets)
# You should especially change the things below with values of "changeme"
APP_NAME=GPM
APP_ENV=local
# this should be generated by `php artisan key:generate` because it has a special format
APP_KEY=changeme
APP_DEBUG=true
# NOTE: APP_PORT must be included in APP_URL if it is used and not behind reverse proxy
APP_URL=http://localhost:8013
APP_PORT=8013
DOCKER_NAME=gpm
LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=gpm
DB_USERNAME=gpm
DB_PASSWORD=changeme
# NOTE: these have to match you development genetracker instance
GT_DB_HOST=host.docker.internal
GT_DB_PORT=3318
GT_DB_DATABASE=gene_tracker
GT_DB_USERNAME=gene_tracker
GT_DB_PASSWORD=changeme
BROADCAST_DRIVER=log
CACHE_DRIVER=redis
QUEUE_CONNECTION=sync
SESSION_DRIVER=redis
SESSION_LIFETIME=120
REDIS_HOST=redis
REDIS_PASSWORD=changeme
REDIS_PORT=6379
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
FEATURE_CSPEC_SUMMARY=true
FEATURE_NOTIFY_SCOPE_CHANGE=true
FEATURE_SPECS_UPLOAD=true
FEATURE_CHAIR_REVIEW=true
JIRA_USER=
JIRA_API_TOKEN=
DX_DRIVER=log
DX_WARN_DISABLED=false
DX_ENABLE_PUSH=true
DX_BROKER=
DX_CONSUME=false
# DX_USERNAME=
# DX_PASSWORD=
# DX_GROUP=unc_development
# DX_GROUP should be unc_development, unc_staging, or unc_production
# the lines below appear to be unused
MEMCACHED_HOST=127.0.0.1
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"