-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
53 lines (42 loc) · 1.02 KB
/
Copy path.gitignore
File metadata and controls
53 lines (42 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# .gitignore para projeto Laravel + Node
# Mantém arquivos sensíveis e artefatos de build fora do repositório
# Environment
.env
.env.*
# Permitir commitar o arquivo de exemplo de variáveis de ambiente
!.env.example
# Vendor / dependencies
/vendor/
/node_modules/
# Build / assets
/public/build/
/public/hot
/public/storage
# Storage & cache
/storage/*.key
/storage/framework/cache/data/
/storage/framework/sessions/
/storage/framework/views/
/storage/logs/
# IDEs / editors
/.idea/
/.vscode/
/.phpstorm.meta.php
# System files
.DS_Store
Thumbs.db
# PHPUnit / test cache
/.phpunit.result.cache
/.phpunit.cache
# Composer / npm logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Misc
/auth.json
Homestead.json
Homestead.yaml
# Optional: arquivo de banco SQLite local (criado na raiz database/database.sqlite)
# Se você não quer commitar o banco de desenvolvimento, mantenha esta linha ativa.
/database/database.sqlite
# Nota: se você precisa commitar o arquivo de DB para um demo, remova a linha acima e commite explicitamente.