-
Notifications
You must be signed in to change notification settings - Fork 11
/
.env.example.json
59 lines (51 loc) · 1.38 KB
/
.env.example.json
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
{
"APP_NAME": "Bow Application",
"APP_ENV": "development",
"APP_DEBUG": true,
"APP_KEY": "",
"APP_URL": "http://localhost:5000",
"APP_ASSET_PREFIX": "/",
"APP_URI_PREFIX": "",
"APP_AUTO_CSRF": true,
"APP_JWT_SECRET": "",
"APP_JWT_ISSUER": "app.example.com",
"APP_JWT_AUD": "app.example.com",
"DB_DEFAULT": "mysql",
"DB_HOSTNAME": "127.0.0.1",
"DB_USERNAME": "root",
"DB_PASSWORD": "secret",
"DB_DBNAME": "bowapp",
"DB_CHARSET": "utf8mb4",
"DB_COLLATION": "utf8mb4_unicode_ci",
"DB_ENGINE": "InnoDB",
"DB_PORT": 3306,
"DB_SOCKET": "",
"DB_PREFIX": "",
"SESSION_NAME": "BOW",
"SESSION_LIFE": 648000,
"SESSION_PATH": "/",
"SESSION_DOMAIN": null,
"SESSION_SECURE": false,
"SESSION_HTTPONLY": true,
"AWS_KEY": "",
"AWS_SECRET": "",
"AWS_REGION": "us-east-1",
"S3_BUCKET": "buckets",
"FTP_HOSTNAME": "localhost",
"FTP_PASSWORD": "password",
"FTP_USERNAME": "username",
"FTP_PORT": 21,
"FTP_STARTROOT": "",
"FTP_TLS": false,
"FTP_TIMEOUT": 50,
"MAIL_DRIVER": "smtp",
"SMTP_HOSTNAME": "localhost",
"SMTP_USERNAME": "username@localhost",
"SMTP_PASSWORD": "password",
"SMTP_PORT": 25,
"SMTP_TLS": false,
"SMTP_SSL": false,
"SMTP_TIMEOUT": 50,
"MAIL_FROM_EMAIL": "[email protected]",
"MAIL_FROM_NAME": "Bow Framework"
}