forked from Lan2Play/eventula-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
108 lines (76 loc) · 2.23 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
95
96
97
98
99
100
101
102
103
104
105
106
107
# Environment Variables will always override any database variables they match unless ENV_OVERRIDE is set to true.
## User for nginx and php-fpm (only nessecary for development)
UUID=82
GUID=82
## App Settings
APP_KEY=
APP_DEBUG=true
APP_ENV=local
## Eventula Settings
EVENTULA_URL='https://eventula.com'
## Org Settings
APP_NAME=
APP_TAGLINE=
APP_URL=http://localhost
## Email Server
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
## Database
DB_DATABASE=eventula_manager_database
DB_USERNAME=eventula_manager
DB_PASSWORD=password
DB_HOST=eventula_manager_database
DB_SEED=true
DB_CONNECTION=mysql
DB_PORT=3306
MYSQL_DATABASE=eventula_manager_database
MYSQL_USER=eventula_manager
MYSQL_PASSWORD=password
MYSQL_RANDOM_ROOT_PASSWORD=true
##Timezone
TIMEZONE=UTC
## Google Analytics (Optional)
# https://api.google.com
GOOGLE_ANALYTICS_TRACKING_ID=
## Paypal
# https://developer.paypal.com/docs/api/overview/
PAYPAL_USERNAME=
PAYPAL_PASSWORD=
PAYPAL_SIGNATURE=
## Stripe
# https://stripe.com/docs/api
STRIPE_SECRET_KEY=
STRIPE_PUBLIC_KEY=
## Steam (optional)
# https://steamcommunity.com/dev/apikey
STEAM_API_KEY=
## Tournaments (optional)
# https://challonge.com/settings/developer
CHALLONGE_API_KEY=
## Facebook (optional)
# https://developers.facebook.com
FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
## File Logger - true/false
# If set to true, the App and Nginx will log to file
LOG_FILES=false
## HTTPS - true/false
# If set to true, the App will redirect all requests to HTTPS
ENABLE_HTTPS=false
## APP HTTPS - true/false
# If set to true, the App will build all links with HTTPS (URL::forceSchema('https');) Useful for productive usage behind a reverse Proxy
FORCE_APP_HTTPS=false
## HTTPS Only Cookies - true/false
# By setting this option to true, session cookies will only be sent back to the server if the browser has a HTTPS connection. This will keep the cookie from being sent to you if it can not be done securely.
SESSION_SECURE_COOKIE=false
## DB Migrate
# If set to true, the App will migrate the database on boot
DB_MIGRATE=true
## ENV Overide
# If set to true, the App will take its API Keys from the ENV instead of the database
ENV_OVERRIDE=false