]> cat aescling's git repositories - mastodon.git/blob - .gitignore
Add timeline read markers API (#11762)
[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 /log/*
17 !/log/.keep
18 /tmp
19 coverage
20 public/system
21 public/assets
22 public/packs
23 public/packs-test
24 .env
25 .env.production
26 node_modules/
27 build/
28
29 # Ignore Vagrant files
30 .vagrant/
31
32 # Ignore Capistrano customizations
33 config/deploy/*
34
35 # Ignore IDE files
36 .vscode/
37 .idea/
38
39 # Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
40 postgres
41 redis
42 elasticsearch
43
44 # Ignore Apple files
45 .DS_Store
46
47 # Ignore vim files
48 *~
49 *.swp
50
51 # Ignore npm debug log
52 npm-debug.log
53
54 # Ignore yarn log files
55 yarn-error.log
56 yarn-debug.log
57
58 # Ignore Docker option files
59 docker-compose.override.yml
60
This page took 0.079414 seconds and 5 git commands to generate.