Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 282 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 282 Bytes

lgtm.solutions

For backend initialization

python3 -m venv venv
. venv/bin/activate
pip install Flask

For backend run

export FLASK_APP=api/main
flask run

Backend is available on 127.0.0.1:5000

For frontend

npm install
npm run dev