ID | Solution | Note |
---|---|---|
1 | MyPractice | Simple libraries |
2 | SimpleAPI | Simple API |
The project use pre-commit
and python environment to install some useful package that check your code before pushing code in github. If you want to try this solution, you must create python virtual environment firstly
python -m venv venv
And active your environment
source venv/bin/activate
After that, install pre-commit package
pip3 install -r requirements.txt
Install pre-commit to github hook
pre-commit install
Try to run
pre-commit run --all-file