A web app with an integrated iCal feed so you will always know whether today is a Greg or Ian day!
$ python -m venv .venv
$ source .venv/bin/activate
$ pip install -r dev-requirements.txt
Install Microsoft's Python extension, if you haven't already. Then launch vscode from within the project's activated virtualenv.
$ source .venv/bin/activate
$ code .
Add the following snippet to your .vscode/launch.json
's .configuration
array.
{
"name": "Debug Greg or Ian",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload",
"--host", "0.0.0.0",
"--port", "8001"
],
"jinja": true,
"justMyCode": true
}
$ black main.py
$ isort main.py
$ flake8 main.py
$ pylint main.py
$ ansible-playbook -i inventory.yaml gregorian.playbook.yaml
The Gregorian calendar by Natasha Jay .
Help calendar by Khomsun Chaiwong made available under CC BY 3.0 .