-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
66 lines (52 loc) · 1.62 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
# 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=CCDB
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:8011
APP_PORT=8011
LOG_CHANNEL=stack
# LOG_SLACK_WEBHOOK_URL=
DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=ccdb
DB_USERNAME=ccdb
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
REDIS_PREFIX=ccdb
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
# needed for backpack pro version
COMPOSER_AUTH='{ "http-basic": { "backpackforlaravel.com": { "username": "changeme", "password": "changeme" } } }'
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}"