]> cat aescling's git repositories - mastodon.git/blob - .gitignore
Address vulnerability from GHSA-3fjr-858r-92rw
[mastodon.git] / .gitignore
1 # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2 #
3 # If you find yourself ignoring temporary files generated by your text editor
4 # or operating system, you probably want to add a global ignore instead:
5 # git config --global core.excludesfile '~/.gitignore_global'
6
7 # Ignore bundler config and downloaded libraries.
8 /.bundle
9 /vendor/bundle
10
11 # Ignore the default SQLite database.
12 /db/*.sqlite3
13 /db/*.sqlite3-journal
14
15 # Ignore all logfiles and tempfiles.
16 .eslintcache
17 /log/*
18 !/log/.keep
19 /tmp
20 /coverage
21 /public/system
22 /public/assets
23 /public/packs
24 /public/packs-test
25 .env
26 .env.production
27 .env.development
28 /node_modules/
29 /build/
30
31 # Ignore Vagrant files
32 .vagrant/
33
34 # Ignore Capistrano customizations
35 /config/deploy/*
36
37 # Ignore IDE files
38 .vscode/
39 .idea/
40
41 # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
42 /postgres
43 /postgres14
44 /redis
45 /elasticsearch
46
47 # ignore Helm dependency charts
48 /chart/charts/*.tgz
49
50 # Ignore Apple files
51 .DS_Store
52
53 # Ignore vim files
54 *~
55 *.swp
56
57 # Ignore npm debug log
58 npm-debug.log
59
60 # Ignore yarn log files
61 yarn-error.log
62 yarn-debug.log
63
64 # Ignore vagrant log files
65 *-cloudimg-console.log
66
67 # Ignore Docker option files
68 docker-compose.override.yml
This page took 0.152775 seconds and 4 git commands to generate.