Skip to content

Commit 6acd2e9

Browse files
committedApr 25, 2022
feat(laravel-free): Initial commit
1 parent f3c99a1 commit 6acd2e9

File tree

349 files changed

+25351
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+25351
-12
lines changed
 

‎.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2
16+
17+
[docker-compose.yml]
18+
indent_size = 4

‎.env

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=base64:LVMbUfVHXTiWIZvTH9F28aky2tkrkJ+EG6HNYd3FSUE=
4+
APP_DEBUG=true
5+
APP_URL=http://localhost
6+
ASSET_URL=
7+
8+
LOG_CHANNEL=stack
9+
LOG_DEPRECATIONS_CHANNEL=null
10+
LOG_LEVEL=debug
11+
12+
DB_CONNECTION=mysql
13+
DB_HOST=127.0.0.1
14+
DB_PORT=3306
15+
DB_DATABASE=laravel
16+
DB_USERNAME=root
17+
DB_PASSWORD=
18+
19+
BROADCAST_DRIVER=log
20+
CACHE_DRIVER=file
21+
FILESYSTEM_DISK=local
22+
QUEUE_CONNECTION=sync
23+
SESSION_DRIVER=file
24+
SESSION_LIFETIME=120
25+
26+
MEMCACHED_HOST=127.0.0.1
27+
28+
REDIS_HOST=127.0.0.1
29+
REDIS_PASSWORD=null
30+
REDIS_PORT=6379
31+
32+
MAIL_MAILER=smtp
33+
MAIL_HOST=mailhog
34+
MAIL_PORT=1025
35+
MAIL_USERNAME=null
36+
MAIL_PASSWORD=null
37+
MAIL_ENCRYPTION=null
38+
MAIL_FROM_ADDRESS="hello@example.com"
39+
MAIL_FROM_NAME="${APP_NAME}"
40+
41+
AWS_ACCESS_KEY_ID=
42+
AWS_SECRET_ACCESS_KEY=
43+
AWS_DEFAULT_REGION=us-east-1
44+
AWS_BUCKET=
45+
AWS_USE_PATH_STYLE_ENDPOINT=false
46+
47+
PUSHER_APP_ID=
48+
PUSHER_APP_KEY=
49+
PUSHER_APP_SECRET=
50+
PUSHER_APP_CLUSTER=mt1
51+
52+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
53+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

0 commit comments

Comments
 (0)
Please sign in to comment.