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

Latest commit

 

History

History
39 lines (23 loc) · 517 Bytes

README.md

File metadata and controls

39 lines (23 loc) · 517 Bytes

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