Skip to content

Commit 4753cea

Browse files
Added default config => switch to SQLite
Added default '.env' config file. I'm keeping the '.env.example' in the repository, but an easier setup process a default configuration will from now on be included in the repository. I'm switching from MySQL to SQLite for the same reason mentioned above. By adding the MySQL database setting from '.env.example' to the '.env' config, MySQL can still be used as the database.
1 parent edc1204 commit 4753cea

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.env

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
APP_NAME="LittleLink-custom"
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=
6+
7+
LOG_CHANNEL=stack
8+
LOG_LEVEL=debug
9+
10+
DB_CONNECTION=sqlite
11+
12+
BROADCAST_DRIVER=log
13+
CACHE_DRIVER=file
14+
QUEUE_CONNECTION=sync
15+
SESSION_DRIVER=file
16+
SESSION_LIFETIME=120
17+
18+
MEMCACHED_HOST=127.0.0.1
19+
20+
REDIS_HOST=127.0.0.1
21+
REDIS_PASSWORD=null
22+
REDIS_PORT=6379
23+
24+
MAIL_MAILER=smtp
25+
MAIL_HOST=mailhog
26+
MAIL_PORT=1025
27+
MAIL_USERNAME=null
28+
MAIL_PASSWORD=null
29+
MAIL_ENCRYPTION=null
30+
MAIL_FROM_ADDRESS=null
31+
MAIL_FROM_NAME="${APP_NAME}"
32+
33+
AWS_ACCESS_KEY_ID=
34+
AWS_SECRET_ACCESS_KEY=
35+
AWS_DEFAULT_REGION=us-east-1
36+
AWS_BUCKET=
37+
38+
PUSHER_APP_ID=
39+
PUSHER_APP_KEY=
40+
PUSHER_APP_SECRET=
41+
PUSHER_APP_CLUSTER=mt1
42+
43+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
44+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

0 commit comments

Comments
 (0)