Skip to content

Commit 62107f6

Browse files
committedAug 4, 2024
Lesson 1.2 - Creating Our AdonisJS App with Inertia
0 parents  commit 62107f6

Some content is hidden

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

42 files changed

+11119
-0
lines changed
 

‎.editorconfig

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# http://editorconfig.org
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.json]
12+
insert_final_newline = unset
13+
14+
[**.min.js]
15+
indent_style = unset
16+
insert_final_newline = unset
17+
18+
[MakeFile]
19+
indent_style = space
20+
21+
[*.md]
22+
trim_trailing_whitespace = false

‎.env.example

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
TZ=UTC
2+
PORT=3333
3+
HOST=localhost
4+
LOG_LEVEL=info
5+
APP_KEY=uOJThCGLLmGc3SnrMbitajHWYbCCApjg
6+
NODE_ENV=development
7+
SESSION_DRIVER=cookie
8+
DB_HOST=127.0.0.1
9+
DB_PORT=5432
10+
DB_USER=postgres
11+
DB_PASSWORD=
12+
DB_DATABASE=

0 commit comments

Comments
 (0)
Please sign in to comment.