forked from netcreateorg/netcreate-2018
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (45 loc) · 920 Bytes
/
.gitignore
File metadata and controls
54 lines (45 loc) · 920 Bytes
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
# See http://help.github.com/ignore-files/ for more about ignoring
# files.
#
# If you find yourself ignoring temp files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile ~/.gitignore
# NetCreate ignored directories
/app-data/*
/runtime
netcreate-config.js
# _ur packages
_dist
_ur_addons/_public
# Also ignore build system directories
.npmignore
/.parcel-cache
/public*
# the code-workspace file also hides node_modules from file list
**/node_modules
.package-lock.json
# And don't commit personal log files or temp
*_log.md
*.log
tmp-*
*_nocommit*
# And don't commit .zip archives either
*.zip
# Ignore all generated files
npm-debug.log
*.tmproj
# Numerous always-ignore extensions
*~
*.diff
*.patch
*.err
*.orig
*.log
# Ignore OS or Editor folders
.DS_Store
.cache
.project
.settings
.tmproj
nbproject
Thumbs.db