The software allows you to add/remove items to your bucket list, then change their state from not completed to complete.
Bucket list is a full stack JavaScript application with an Express server and MongoDB database.
These instructions will get the project up and running on your local machine for development purposes.
Install dependencies:
npm install
Run a mongoDB server (leave running in a terminal window):
mongod
Seed the database:
mongo < server/db/seeds.js
Run webpack (leave running in a terminal window):
npm run build
Run express (leave running in a terminal window):
npm run server:dev
The application is running on port 300 so visit http://localhost:3000/.