👋 Welcome to Open Source Calendar built with Python. 🐍
- Develop open source calendar tool using new technics while trying new things.
- Using Python as main programming language and plain HTML/JS for GUI.
- Create bonding in our community.
- Windows or Linux based system - either WSL on windows or full blown linux.
- Python
- Install python's requirements:
pip install -r requirements.txt
- Install pre-commit hooks:
pre-commit install
virtualenv env
.\env\Scripts\activate.bat
pip install -r requirements.txt
# Copy app\config.py.example to app\config.py.
# Edit the variables' values.
uvicorn app.main:app --reload
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp app/config.py.example app/config.py
# Edit the variables' values.
uvicorn app.main:app --reload
python -m pytest --cov-report term-missing --cov=app tests
View contributing guidelines.