GitXplorerGitXplorer
g

reading-group-budgets

public
1 stars
3 forks
3 issues

Commits

List of commits on branch master.
Unverified
292e2ec880cefee4a3c240bc5c9e943e27262065

this works for now

mmso122591 committed 6 years ago
Verified
7663fab19a519b1fa357e1b1331ff541fe2f0861

Merge pull request #5 from sferrazzaf/new-schema-fields

gglasserc committed 6 years ago
Unverified
aba5ba1ed24b393cb5b55795967b16b0e4dbf544

Add new schema fields: income and expenses

ssferrazzal committed 6 years ago
Verified
71e43afe867b0e18465cdf3f2edc8618262ccffd

Merge pull request #4 from sferrazzaf/readme-update

gglasserc committed 6 years ago
Unverified
bd893464d3efa93a65c13778497902cf4fcef443

Fix up Readme instructions for local db

ssferrazzal committed 6 years ago
Verified
39d4be29529e526600b08dca30b7c0fbeb67b7dc

Create simple budget model

gglasserc committed 6 years ago

README

The README file for this repository.

Participatory budgeting project for the reading group

This is based off of the "Local Library" tutorial on MDN.

Running

  • npm install
  • Install mongodb and run it using something like:
mongod --dbpath ../mongodb/budgets

... Where the path is just the path to some data that can run on a local MongoDB server instance. There doesn't have to be anything in the directory. You can use any path, but if you're running in Ubuntu on Windows 10, try putting the local database in somewhere recognized as an Ubuntu directory, such as /data/db which is the standard mongo path on Linux.

  • Run mongo to verify that it worked:
mongo
  • Start the project, using local mongo:
env MONGODB_URI=mongodb://localhost/budgeting npm start

If you're using a local database, You should see that there are no books since the database tables are empty.