This app allows developers to explore abandoned lots in Newark. It is currently under active development. We are working on ways to enable communication between developers and the City of Newark. Hopefully this will help to encourage new opportunities for the city.
This area will be populated shortly
From the directory of the user that will run this service
Stop server app:
$ cd ../code/cfc_vacantlots_bid
$ (sudo) forever stopallStop mongodb:
$ sudo mongo --eval "db.getSiblingDB('admin').shutdownServer()"Start mongodb:
$ sudo nohup mongod --smallfiles --nojournal &START server app
$ sudo forever start server.jsNow Check your Link
Go to the project directory and first get the mongodb server running
$ mongodYou may have to use sudo depending on how you installed mongodb.
Then start you node server
$ node server.jsGo to the cloned repo and checkout the deploy branch.
Get the mongo server running indefinitely. Normally you can
use a service, but on a small server you may need the --smallfiles
and --nojournal options which significantly decrease the memory footprint
of the mongo database. You can run it indefinitely using nohup:
$ sudo nohup mongod --smallfiles --nojournal &Then start you node server (sudo is necessary because we are using port 80)
$ sudo forever start server.js