From 42a186fb228d3ceb1aeaa9abbdb329b11af31600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20H=C3=A4gg?= Date: Tue, 4 Aug 2015 12:00:03 +0200 Subject: [PATCH] Some more setup files. --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ gulpfile.js | 1 + nodemon.json | 11 +++++++++++ 3 files changed, 47 insertions(+) create mode 100644 .gitignore create mode 120000 gulpfile.js create mode 100644 nodemon.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85aabca --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Logs +logs +*.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 + +/dump + +/gulpconfig.js + +/public + +/server/uploads diff --git a/gulpfile.js b/gulpfile.js new file mode 120000 index 0000000..0f1e7d6 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1 @@ +gulp/gulpfile.js \ No newline at end of file diff --git a/nodemon.json b/nodemon.json new file mode 100644 index 0000000..91d1562 --- /dev/null +++ b/nodemon.json @@ -0,0 +1,11 @@ +{ + "ext": "js,dust", + "ignore": [ + "bower_components", + "gulp", + "node_modules", + "public", + "samples", + "src" + ] +}