forked from serversideup/financial-freedom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
55 lines (46 loc) · 1.47 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
############################################
# Application Settings: Ensure these are correct.
############################################
# App Settings
APP_NAME="Financial Freedom"
APP_ENV=production # Change to "local" for development
APP_DEBUG=false # Change to "true" for development
APP_URL=https://financialfreedom.dev.test
APP_KEY=base64:1234567890abcdefghijklmnopqrstuvwxyz # Run `php artisan key:generate`
# Database Settings
DB_ROOT_PASSWORD=myrootpassword
DB_HOST=mariadb # You generally don't need to change this
DB_DATABASE=financialfreedom
DB_USERNAME=financialfreedom_dbuser
DB_PASSWORD=financialfreedom_dbpassword
# Mail Settings
MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_NAME="${APP_NAME}"
# serversideup/php settings
SSL_MODE=full
AUTORUN_ENABLED=true
AUTORUN_LARAVEL_EVENT_CACHE=false
AUTORUN_LARAVEL_ROUTE_CACHE=false
AUTORUN_LARAVEL_STORAGE_LINK=false
AUTORUN_LARAVEL_VIEW_CACHE=false
# Financial Freedom Settings
FINANCIAL_FREEDOM_ALLOW_REGISTRATION=false
############################################
# Development Settings (don't change these)
############################################
LOG_CHANNEL=stack
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_LIFETIME=120
SESSION_DRIVER=cookie
MYSQL_ROOT_PASSWORD="${DB_ROOT_PASSWORD}"
MYSQL_DATABASE="${DB_DATABASE}"
MYSQL_USER="${DB_USERNAME}"
MYSQL_PASSWORD="${DB_PASSWORD}"