Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 579 Bytes

File metadata and controls

33 lines (21 loc) · 579 Bytes

Fyyur

This is the project made as a part of Full Stack Web Developer on Udacity.

Prerequisites

Python 3 PosstgressDB

Running locally

´´´bash

Istall dependencies

pip install -r requirements.txt

Activate the environment

source ./myenv/bin/activate

Run the app

python3 app.py ´´´

Database Migration

create migration when anythin changed in the model

flask db migrate

apply the latest migration to the Database

flask db upgrade

Inspiration