Schedule meetings either in person or in zoom, based on the weather condition.
For developing I use poetry.
Linux/Mac:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
Windows:
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
Test installation in shell:
poetry --version
Make sure your ssh key is set up, or use https.
git clone [email protected]:ungrichtepfl/covid-planner.git
cd covid-planner
Use venv or any other virtual environment creater of your choice (e.g. use directly poetry):
python3 -m venv venv
source venv/bin/activate
poetry install
poetry run covid-planner
Visit Open Weather Map
to create an open weather API key and follow the first part of the tutorial
found here to create an Zoom API key
and secret. Copy the file api_keys_template.yaml
found in src/covid_planner/templates/
to a file
in config/api_keys.yaml
(create directory and file if not yet existing or run program once). Add the generated keys at the appropriate
locations.
NEVER commit this file to the remote repository!