Remove database from git repo
[vchess.git] / .gitignore
1 # Logs
2 logs
3 *.log
4 npm-debug.log*
5 yarn-debug.log*
6 yarn-error.log*
7
8 # Runtime data
9 pids
10 *.pid
11 *.seed
12 *.pid.lock
13
14 # Temp files
15 *.swp
16 *~
17
18 # Demo video, database
19 *.webm
20 /db/vchess.sqlite
21
22 # socket URL file
23 /public/javascripts/utils/socket_url.js
24
25 # CSS generated files
26 /public/stylesheets/*.map
27 /public/stylesheets/*.css
28
29 # Directory for instrumented libs generated by jscoverage/JSCover
30 lib-cov
31
32 # Coverage directory used by tools like istanbul
33 coverage
34
35 # nyc test coverage
36 .nyc_output
37
38 # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
39 .grunt
40
41 # Bower dependency directory (https://bower.io/)
42 bower_components
43
44 # node-waf configuration
45 .lock-wscript
46
47 # Compiled binary addons (https://nodejs.org/api/addons.html)
48 build/Release
49
50 # Dependency directories
51 node_modules/
52 jspm_packages/
53
54 # Typescript v1 declaration files
55 typings/
56
57 # Optional npm cache directory
58 .npm
59
60 # Optional eslint cache
61 .eslintcache
62
63 # Optional REPL history
64 .node_repl_history
65
66 # Output of 'npm pack'
67 *.tgz
68
69 # Yarn Integrity file
70 .yarn-integrity
71
72 # dotenv environment variables file
73 .env
74
75 # next.js build output
76 .next