Skip to content

Commit 279f214

Browse files
committedApr 20, 2022
init
0 parents  commit 279f214

Some content is hidden

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

84 files changed

+10995
-0
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 = 4
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.example

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
APP_NAME=Simplechat
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_URL=http://simplechat.test
6+
7+
LOG_CHANNEL=stack
8+
LOG_DEPRECATIONS_CHANNEL=null
9+
LOG_LEVEL=debug
10+
11+
DB_CONNECTION=mysql
12+
DB_HOST=127.0.0.1
13+
DB_PORT=3306
14+
DB_DATABASE=simplechat
15+
DB_USERNAME=root
16+
DB_PASSWORD=
17+
18+
BROADCAST_DRIVER=log
19+
CACHE_DRIVER=file
20+
FILESYSTEM_DISK=local
21+
QUEUE_CONNECTION=sync
22+
SESSION_DRIVER=file
23+
SESSION_LIFETIME=120
24+
25+
AWS_ACCESS_KEY_ID=
26+
AWS_SECRET_ACCESS_KEY=
27+
AWS_DEFAULT_REGION=us-east-1
28+
AWS_BUCKET=
29+
AWS_USE_PATH_STYLE_ENDPOINT=false
30+
31+
PUSHER_APP_ID=
32+
PUSHER_APP_KEY=
33+
PUSHER_APP_SECRET=
34+
PUSHER_APP_CLUSTER=mt1
35+
36+
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
37+
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

0 commit comments

Comments
 (0)
Please sign in to comment.