Skip to content

Commit a7c18b7

Browse files
committedJan 6, 2020
feat(init): initial commit
0 parents  commit a7c18b7

File tree

142 files changed

+24000
-0
lines changed

Some content is hidden

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

142 files changed

+24000
-0
lines changed
 

‎.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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 = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.yml]
15+
indent_size = 2

‎.env.example

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

0 commit comments

Comments
 (0)
Please sign in to comment.