Make sure that you have installed Python 3.8.0 or later (https://www.python.org/).
It wil be better if you can handle your python versions with pyenv and manage your dependencies with poetry
Clone the project
git clone git@github.com:DataScienceResearchPeru/epidemiologic-calculator.gitEnter the project directory
cd epidemiologic-calculatorInstall all the dependencies
$ poetry installRun project
$ poetry run python -m epicalOpen the browser at http://127.0.0.1:8080/
To install code quality tools run the folowing commands
poetry run pre-commit install
Make your changes an stage them
git add .
Make your commit with poetry
poetry run git commit -m "your message here! :D"
I you have error, fix them an then repeat git add . and poetry run git commit ... and then
git push