Hosted on Heroku: SoundUp
Inspired by OpenTable, SoundUp is a reservation platform where users can search for and hire musicians for gigs and events.
| Features List | Database Schema | Backend API Routes | Frontend Routes | Redux Store | User Stories | Wireframes |
SoundUp was built using the following technologies:
To see SoundUp live, please click the link provided above. To run SoundUp locally, please follow these steps:
git clone https://github.com/madilippmann/SoundUp.git
psql
CREATE USER soundup_app WITH PASSWORD <password> CREATEDB;
CREATE DATABASE soundup_dev WITH OWNER soundup_app;
pipenv install
pipenv shell
flask db upgrade
flask seed all
flask run
npm install
npm start