-
Notifications
You must be signed in to change notification settings - Fork 15
/
.env.docker
90 lines (72 loc) · 2.4 KB
/
.env.docker
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
APP_NAME=HackGreenville
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost
# APP_PORT=80
FORCE_SSL=false
LOG_CHANNEL=single
WWWGROUP=1337
LARAVEL_SAIL=1
PHP_RUNTIME=8.1
# PHP_RUNTIME=7.4
DB_CONNECTION=mysql
DB_HOST=hackgreenville-db
DB_PORT=3306
DB_DATABASE=hackgreenville
DB_USERNAME=hackgreenville
DB_PASSWORD=changeme
MYSQL_ROOT_PASSWORD="${DB_PASSWORD}"
MYSQL_DATABASE="${DB_DATABASE}"
MYSQL_USER="${DB_USERNAME}"
MYSQL_PASSWORD="${DB_PASSWORD}"
MYSQL_ALLOW_EMPTY_PASSWORD="yes"
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
SESSION_LIFETIME=120
QUEUE_DRIVER=sync
REDIS_HOST=hackgreenville-redis
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
TZ='America/New_York'
EVENTS_API_DOMAIN='https://events.openupstate.org'
ORGS_API_DOMAIN='https://data.openupstate.org'
GOOGLE_TAG_MANAGER=
HCAPTCHA_SITEKEY=
HCAPTCHA_SECRET=
SLACK_CONTACT_WEBHOOK=
# The private Eventbrite API key / token for importing events
EVENTBRITE_PRIVATE_TOKEN=
# The maximum number of days in the past that the "Import" function
# will request from the remote event services
# This can indirectly limit the consuming application's start_date
EVENT_IMPORTER_MAX_DAYS_IN_PAST=30
# The maximum number of days in the future that the "Import" function
# will request from the remote event services
# This can indirectly limit the consuming application's end_date
EVENT_IMPORTER_MAX_DAYS_IN_FUTURE=180
# Required to authorize with the Meetup GraphQL API
# We are using the JWT Flow for authentication
# https://www.meetup.com/api/authentication/#p04-jwt-flow-section
# Client ID = OAuth client ID. Member ID = Meetup user ID. Private Key ID = JWT private key for OAuth client. Private Key Path = Path to the private key file.
# At this time, Pro membership is required to generate a Meetup OAuth client.
EVENT_IMPORTER_MEETUP_GRAPHQL_CLIENT_ID=
EVENT_IMPORTER_MEETUP_GRAPHQL_MEMBER_ID=
EVENT_IMPORTER_MEETUP_GRAPHQL_PRIVATE_KEY_ID=
EVENT_IMPORTER_MEETUP_GRAPHQL_PRIVATE_KEY_PATH=
# When no start_date is provided by the consuming application, this many days
# in the past will be returned. That is, start_date = {today's date - EVENTS_API_DEFAULT_DAYS}
EVENTS_API_DEFAULT_DAYS=1