Ignore Dockerfile and add single core mode

This commit is contained in:
Michael Schmatz 2015-09-09 23:11:10 -04:00
parent dfcdfd92b1
commit 948df4a09c
3 changed files with 8 additions and 0 deletions

3
.gitignore vendored
View file

@ -94,4 +94,7 @@ login.coffee
npm-debug.log*
temp/
Dockerfile
### If you add something here, copy it to the end of .npmignore, too. ###

View file

@ -103,6 +103,7 @@ temp/
# local settings
login.coffee
Dockerfile
# debugging
*.heapsnapshot

4
singlecore.coffee Normal file
View file

@ -0,0 +1,4 @@
require('coffee-script')
require('coffee-script/register')
server = require('./server')
server.startServer()