My implementation of Roam module of Learners Guild curriculum.
A full-stack web application for travelers where:
- each user has a profile page,
- users can view information on different cities,
- users can leave reviews for those cities,
- can edit or delete their reviews
https://roam-by-mira.herokuapp.com/
These instructions are for getting a copy of the project on your local environment.
- Clone/Fork -
git clone https://github.com/Maxmi/Roam.git - Install npm packages -
npm install
- Create database and tables -
npm run db:init(make sure you don't have a db namedroamas this command will delete it)
- Run
cp .env.template .envcommand in the terminal to create your own.envfile and enter your config values in the.envfile
- Run
npm start - To access the app go to
http://localhost:3000
- Run
npm test