Skip to content

Commit

Permalink
Add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
yeojoey committed Feb 9, 2017
1 parent 5d843be commit 1db9a6b
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Logs
log/server/
log/database/
*.log

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
# node_modules

.DS_Store
*.sln
*.njsproj
.vs/
obj/
.ntvs_analysis.dat

# Ignore node modules
node_modules/

# Ignore webstorm files
.idea/

# Ignore bower components
bower_components/

# Ignore default config file
config.json

# Ignore ssl
ssl/

# Ignore some javascript libraries
public/javascripts/lib/

# Ignore file uploads
fileuploads/*

# Ignore bundled front-end js file
public/javascripts/dashboard.js
public/javascripts/tutorial.js
public/javascripts/dashboard.min.js
public/javascripts/tutorial.min.js

# Ignore npm debug logs
npm-debug.log
npm-debug.log.*

# Ignore jsdocs
documentation/jsdoc/

0 comments on commit 1db9a6b

Please sign in to comment.