Skip to content

Commit edd1719

Browse files
committed
init of v4 🌮
1 parent e8088e2 commit edd1719

File tree

515 files changed

+12308
-55192
lines changed

Some content is hidden

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

515 files changed

+12308
-55192
lines changed

.devcontainer/Dockerfile

-16
This file was deleted.

.devcontainer/devcontainer.json

-36
This file was deleted.

.dockerignore

-16
This file was deleted.

.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

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
############################################################################################################
2+
# Development Environment
3+
4+
# Userid for the user that will run the application inside the container
5+
USERID=
6+
############################################################################################################
7+
8+
APP_NAME=Laravel
9+
APP_ENV=local
10+
APP_KEY=
11+
APP_DEBUG=true
12+
APP_URL=http://localhost
13+
14+
LOG_CHANNEL=stack
15+
LOG_DEPRECATIONS_CHANNEL=null
16+
LOG_LEVEL=debug
17+
18+
DB_CONNECTION=pgsql
19+
DB_HOST=postgres
20+
DB_PORT=5432
21+
DB_DATABASE=coolify
22+
DB_USERNAME=sail
23+
DB_PASSWORD=password
24+
25+
BROADCAST_DRIVER=log
26+
CACHE_DRIVER=file
27+
FILESYSTEM_DISK=local
28+
QUEUE_CONNECTION=sync
29+
SESSION_DRIVER=file
30+
SESSION_LIFETIME=120
31+
32+
MAIL_MAILER=smtp
33+
MAIL_HOST=mailpit
34+
MAIL_PORT=1025
35+
MAIL_USERNAME=null
36+
MAIL_PASSWORD=null
37+
MAIL_ENCRYPTION=null
38+
MAIL_FROM_ADDRESS="[email protected]"
39+
MAIL_FROM_NAME="${APP_NAME}"

.gitattributes

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* text=auto eol=lf
2+
3+
*.blade.php diff=html
4+
*.css diff=css
5+
*.html diff=html
6+
*.md diff=markdown
7+
*.php diff=php
8+
9+
/.github export-ignore
10+
CHANGELOG.md export-ignore
11+
.styleci.yml export-ignore

.github/FUNDING.yml

-2
This file was deleted.

.github/ISSUE_TEMPLATE/--bug-report.yaml

-55
This file was deleted.

.github/ISSUE_TEMPLATE/--feature-request.yaml

-31
This file was deleted.

.github/ISSUE_TEMPLATE/--task.yaml

-20
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

-8
This file was deleted.

.github/workflows/production-release-dockerhub.yml

-111
This file was deleted.

0 commit comments

Comments
 (0)