Built by Caroline Sarkki
Live link here: Foam App
Video link walkthrough here: Walkthrough
-
Clone this repository (only main branch)
git clone https://github.com/Chocoloco123/cultureBiosci-challenge-foam.git
-
Install dependencies
pipenv install --dev -r dev-requirements.txt && pipenv install -r requirements.txt
-
Create a .env file based on the example with proper settings for your development environment
-
Setup your PostgreSQL user, password and database and make sure it matches your .env file
-
Get into your pipenv, migrate your database, seed your database, and run your flask app
pipenv shell
flask db upgrade
flask seed all
flask run
-
To run the React App in development, open up a second terminal, cd into the react-app directory and run using
npm start
. -
Enjoy!