Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 407 Bytes

Instructions.md

File metadata and controls

18 lines (9 loc) · 407 Bytes

NPM Testing/ Build Deployment

Run npm run dev to start your development server / run your app.

Run npm run build to build a production version of your app

Flask Testing/ Build Deployment

Install dependencies pipenv install -r requirements.txt

Get into your pipenv pipenv shell

Migrate your database flask db upgrade

Seed your database flask seed all

Run your Flask app flask run