Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.14 KB

README.md

File metadata and controls

32 lines (25 loc) · 1.14 KB

thermite

start master node (and 2 internal db nodes for testing/devel)

node server.js

start separate db node (not currently needed):

node dbnode.js 3001 databases/node1.db
node dbnode.js 3002 databases/node2.db

Project Organization

  • /db-node - all files for the database node
  • /master-node - all files for the master node
    • /master-node/lib - the meat and potatoes. all the logic is here.
    • /master-node/webclient - all files handed to a web browser (after processing). html, css, images, etc.
    • /master-node/routes - maps urls to functions
    • /master-node/startup.coffee - starts up the master node, starts a web server, call other moduels to start
  • server.js - entry point for the master node, just calls master-node/startup.coffee

Dependencies