Title and Map components for FoodiGo
- postgres ('brew install postgres')
- Here's a good article on installing postgres: https://gist.github.com/sgnl/609557ebacd3378f3b72
- node + npm ('brew install node')('brew install npm')
- install project dependencies by running
npm install
- create postgress database by running
npm run createDB
Edit the .env file with your username and remove the config portion at the beginning so the filename is '.env' - Seed the database by running
npm run seedDB
- Start the server and webpack by running
npm start
andnpm run dev
- Navigate to
localhost:3001