This project is archived and not maintained anymore.
Lunch scheduler
- Run
npm install - Run
cp config.json.example config.json - Enter the configuration to the
config.json - Point
bacalao.ioto 127.0.0.1 in your hosts file - Run
npm run-script devto watch and compile static assets and run the server
-
For easy logging install bunyan globally
npm install -g bunyan -
Make you have
nodemonand webpack installed globally. -
Watching files is something that is sometimes limited in number by the OS. This can cause some weirdness with all of these dev tools. Refer to this if you get a
watch ENOSPCerror.
- Indentation - 2 spaces
- Colon directly after the property name.
var polishFood = {
pierogi: true,
bacalhau: false
};- Curly braces the opening one on the same line
- White space - no need to add spaces where not needed
var logout = function() {
user.logout();
return false;
}