- Post an issue about anything
- After creating an issue you can also start to work on your own pull request. This could be a module or general improvements.
- Use basic PEP8 style for python.
- Add type hints if you can. If you can't, it's also fine. Mypy and flake8 are used to validate code.
Requirements:
- Python 3.7 with pip
Clone the repo
git clone [email protected]:Eerovil/TrackLater.git
cd TrackLater
Create a virtualenv (recommended)
mkvirtualenv tracklater -p python3.7 -a .
Install requirements and launch in debug mode.
pip install -r requirements.txt
FLASK_APP=tracklater FLASK_DEBUG=1 python -m flask run