-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
89 lines (74 loc) · 1.21 KB
/
.gitignore
File metadata and controls
89 lines (74 loc) · 1.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# ---> Ruby / Rails
# Dependências
/vendor/bundle
/vendor/ruby
# Arquivos de log e temporários
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep
# Banco de dados SQLite (se usar SQLite no dev)
/db/*.sqlite3
/db/*.sqlite3-journal
/db/*.sqlite3-wal
/db/*.sqlite3-shm
# Arquivos de PID e sockets
/tmp/pids/*
/tmp/sockets/*
!/tmp/pids/
!/tmp/sockets/
# Arquivos de cache
/tmp/cache/*
/tmp/storage/*
/tmp/sessions/*
# Arquivos de compilação de assets
/public/assets
/public/packs
/public/packs-test
/public/vite
/node_modules
/yarn-error.log
/npm-debug.log*
/pnpm-debug.log*
# Arquivos de importmap e propshaft
/public/assets
/public/mru_assets
/.propshaft-cache
# Configurações locais
/config/master.key
/config/credentials/*.key
/config/credentials.yml.enc.old
/.env
/.env.*
# IDEs / Editores
/.idea
/.vscode
*.swp
*~
.project
.DS_Store
Thumbs.db
# Testes
/coverage/
/spec/examples.txt
/spec/tmp/*
/rspec.log
# Arquivos de build e CI
/build/
.bundle/
/.byebug_history
# Docker
/docker-compose.override.yml
*.env.local
*.env.development.local
*.env.test.local
*.env.production.local
# Sistema operacional
ehthumbs.db
Icon?
Desktop.ini
# Para o caso de usar Active Storage
/storage/*
!/storage/.keep
# Outros opcionais
/public/uploads