Skip to content

Commit c9ca6ea

Browse files
committedDec 11, 2024
first
0 parents  commit c9ca6ea

Some content is hidden

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

60 files changed

+14196
-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+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
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

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
APP_NAME=Laravel
2+
APP_ENV=local
3+
APP_KEY=
4+
APP_DEBUG=true
5+
APP_TIMEZONE=UTC
6+
APP_URL=http://localhost
7+
8+
APP_LOCALE=en
9+
APP_FALLBACK_LOCALE=en
10+
APP_FAKER_LOCALE=en_US
11+
12+
APP_MAINTENANCE_DRIVER=file
13+
# APP_MAINTENANCE_STORE=database
14+
15+
PHP_CLI_SERVER_WORKERS=4
16+
17+
BCRYPT_ROUNDS=12
18+
19+
LOG_CHANNEL=stack
20+
LOG_STACK=single
21+
LOG_DEPRECATIONS_CHANNEL=null
22+
LOG_LEVEL=debug
23+
24+
DB_CONNECTION=sqlite
25+
# DB_HOST=127.0.0.1
26+
# DB_PORT=3306
27+
# DB_DATABASE=laravel
28+
# DB_USERNAME=root
29+
# DB_PASSWORD=
30+
31+
SESSION_DRIVER=database
32+
SESSION_LIFETIME=120
33+
SESSION_ENCRYPT=false
34+
SESSION_PATH=/
35+
SESSION_DOMAIN=null
36+
37+
BROADCAST_CONNECTION=log
38+
FILESYSTEM_DISK=local
39+
QUEUE_CONNECTION=database
40+
41+
CACHE_STORE=database
42+
CACHE_PREFIX=
43+
44+
MEMCACHED_HOST=127.0.0.1
45+
46+
REDIS_CLIENT=phpredis
47+
REDIS_HOST=127.0.0.1
48+
REDIS_PASSWORD=null
49+
REDIS_PORT=6379
50+
51+
MAIL_MAILER=log
52+
MAIL_HOST=127.0.0.1
53+
MAIL_PORT=2525
54+
MAIL_USERNAME=null
55+
MAIL_PASSWORD=null
56+
MAIL_ENCRYPTION=null
57+
MAIL_FROM_ADDRESS="hello@example.com"
58+
MAIL_FROM_NAME="${APP_NAME}"
59+
60+
AWS_ACCESS_KEY_ID=
61+
AWS_SECRET_ACCESS_KEY=
62+
AWS_DEFAULT_REGION=us-east-1
63+
AWS_BUCKET=
64+
AWS_USE_PATH_STYLE_ENDPOINT=false
65+
66+
VITE_APP_NAME="${APP_NAME}"

0 commit comments

Comments
 (0)