Go to file
stijndcl 424399b88a Translate to english 2022-07-24 17:09:42 +02:00
.github Update readme & config files 2022-07-19 21:33:18 +02:00
alembic Fix broken migration 2022-07-23 20:59:02 +02:00
database Write tests for tasks 2022-07-24 01:49:52 +02:00
didier Translate to english 2022-07-24 17:09:42 +02:00
tests Write tests for tasks 2022-07-24 01:49:52 +02:00
.editorconfig Initialize database stuff & setup didier 2022-06-10 01:48:02 +02:00
.flake8 Translate to english 2022-07-24 17:09:42 +02:00
.gitignore Bank upgrades 2022-07-03 17:44:16 +02:00
.pre-commit-config.yaml Add birthday commands 2022-07-19 22:58:59 +02:00
.python-version Bump python version 2021-06-20 11:45:34 +02:00
alembic.ini Add missing alembic file 2022-06-16 00:40:37 +02:00
codecov.yaml Urban dictionary commands 2022-07-14 20:28:45 +02:00
docker-compose.yml Add test container 2022-06-29 00:14:44 +02:00
main.py Switch to flake8 2022-07-11 22:23:38 +02:00
pyproject.toml Translate to english 2022-07-24 17:09:42 +02:00
readme.md Add birthday commands 2022-07-19 22:58:59 +02:00
requirements-dev.txt Fix broken migration 2022-07-23 20:59:02 +02:00
requirements.txt Google search 2022-07-18 23:22:28 +02:00
settings.py Create owner-guild-only commands, make sync a bit fancier 2022-07-24 16:39:27 +02:00

readme.md

Didier

wakatime

You bet. The time has come.

Development

Didier uses Python 3.9.5, as specified in the .python-version-file. This file will cause pyenv to automatically use the correct version when you're working on Didier.

# Installing Python 3.9.5 through pyenv
pyenv install 3.9.5

# Creating a Virtual Environment and activate it
# PyCharm will automatically activate your venv
python3 -m venv venv
source venv/bin/activate

# Installing dependencies + development dependencies
pip3 install -r requirements.txt -r requirements-dev.txt

# Installing pre-commit hooks
pre-commit install

The database can be managed easily using Docker Compose. If you want to, however, you can run a regular PostgreSQL server and connect to that instead.

A separate database is used in the tests, as it would obviously not be ideal when tests randomly wipe your database.

# Starting the database
docker-compose up -d db

# Starting the database used in tests
docker-compose up -d db-pytest

Commands

# Starting Didier
python3 main.py

# Running database migrations
alembic upgrade head

# Creating a new database migration
alembic revision --autogenerate -m "Revision message here"

# Running tests
pytest

# Running tests with Coverage
coverage run -m pytest
# Generating code coverage report
coverage html

# Running code quality checks
black
flake8
mypy