.dockerignore
· 450 B · Text
Raw
.env
.env.example
.git
.gitignore
node_modules
/public/hot
/public/storage
/storage/*.key
# Logs and cache
*.log
/storage/logs/*
/storage/framework/cache/*
/storage/framework/sessions/*
/storage/framework/testing/*
/storage/framework/views/*
/storage/app/public/*
/storage/app/private/*
/bootstrap/cache/*.php
.DS_Store
Thumbs.db
.idea
.vscode
*.swp
# Docker itself
docker-compose.yml
Dockerfile
.dockerignore
/database/*.sqlite
/database/*.db
1 | .env |
2 | .env.example |
3 | |
4 | .git |
5 | .gitignore |
6 | |
7 | node_modules |
8 | /public/hot |
9 | /public/storage |
10 | /storage/*.key |
11 | |
12 | # Logs and cache |
13 | *.log |
14 | /storage/logs/* |
15 | /storage/framework/cache/* |
16 | /storage/framework/sessions/* |
17 | /storage/framework/testing/* |
18 | /storage/framework/views/* |
19 | /storage/app/public/* |
20 | /storage/app/private/* |
21 | /bootstrap/cache/*.php |
22 | |
23 | .DS_Store |
24 | Thumbs.db |
25 | .idea |
26 | .vscode |
27 | *.swp |
28 | |
29 | # Docker itself |
30 | docker-compose.yml |
31 | Dockerfile |
32 | .dockerignore |
33 | |
34 | /database/*.sqlite |
35 | /database/*.db |
36 |