.gitignore (544B)
1 # Build and Release Folders
2 bin/
3 bin-debug/
4 bin-release/
5
6 # Other files and folders
7 .settings/
8
9 # lock
10 *.lock
11
12 # Executables
13 *.swf
14 *.air
15 *.ipa
16 *.apk
17 *.exe
18
19 # Hugo
20 public/
21 .hugo_build.lock
22 resources/_gen/
23
24 # Backup Files
25 *.markdown~
26 *.md~
27
28 # Apache
29 .htpasswd
30
31 # Logs
32 logs
33 *.log
34
35 # Runtime data
36 pids
37 *.pid
38 *.seed
39
40 # Build directories
41 public
42 dist
43
44 # Dependency directory
45 # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
46 node_modules
47 package-lock.json
48 bower_components
49
50 # Mac File System File
51 .DS_Store
52