Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.
/ treelo Public archive

trello-like (reactjs, flask)

Notifications You must be signed in to change notification settings

delitamakanda/treelo

Repository files navigation

treelo

trello-like

React JS in frontend

npm install

npm start

Python Flask in backend

virtualenv venv

source venv/bin/activate

## exit venv
exit venv

# run debug server
python manage.py server

# create db
python manage.py db init

# scan all new tables and columns
python manage.py db migrate -m "initial migration"

# apply migrations
python manage.py db upgrade

Treelo API