- Docker
make
builds the docker imagemake run-dev
runs the docker container in development modemake clean
deletes the docker containermake deep-clean
deletes the container and the image
- run
make
and thenmake run-dev
to get the docker container running on
your local env - prefix the
make
commands withsudo
if required on linux - run the following commands once logged into the container's bash shell
pip install -e .
# [required step] to install covid_model packagejupyter notebook --ip 0.0.0.0 --allow-root
# [optional step] to start
notebook serverstreamlit run app.py
# [optional step] to run the streamlit app
- Run app using the Install instructions mentioned above and access it at
http://localhost:8501 - Run notebook server if required and access it at http://localhost:8888