No Description

clovis cf8849a81e feat: implement commission enpoints and refactor auth tests 1 week ago
.idea 7c869a9ad9 feat: implement groups, organisation, roles 1 week ago
.vscode 71c0e9bb2f first commit 3 years ago
alembic cf8849a81e feat: implement commission enpoints and refactor auth tests 1 week ago
app cf8849a81e feat: implement commission enpoints and refactor auth tests 1 week ago
script 24974ed330 Merge remote-tracking branch 'origin/master' 10 months ago
.env.example 5fe072a956 feat: implement sms status monitoring 10 months ago
.flake8 71c0e9bb2f first commit 3 years ago
.gitignore c2d6ef0426 add log.txt to gitignore 2 years ago
Dockerfile 71c0e9bb2f first commit 3 years ago
Readme.md cf8849a81e feat: implement commission enpoints and refactor auth tests 1 week ago
alembic.ini e3127530cc add tags 2 years ago
bdlg2023.conf f1224ac6a1 add apache conf 2 years ago
docker-compose.dev.yml 71c0e9bb2f first commit 3 years ago
docker-compose.yml 71c0e9bb2f first commit 3 years ago
init.sh 71c0e9bb2f first commit 3 years ago
poetry.lock d488660724 feat: protect all API for X-organisations requests 1 week ago
pyproject.toml f774593f81 cicd: update dependencies 1 week ago
requirements-dev.txt f774593f81 cicd: update dependencies 1 week ago
requirements.txt f774593f81 cicd: update dependencies 1 week ago
update_password.py ff12e4672c bump dependencies 10 months ago

Readme.md

bdlg-2023-server

This repository host an API that can parse gsheet planning for brass dans la garonne event and manage creating automatic SMS notification for volunteer.

Getting started

For running the application

git clone ...
cd ...
python -m venv venv
venv/scripts/activate
poetry install

Note, be sure to use python3.11 with this application

  • Copy .env.example to .env and edit it to configure your setup
init.sh
uvicorn app.main:app --reload

Debug

python -m app.debug

Run tests

pytest
pytest app\test\test_volunteer.py

Run coverage tests

coverage run -m pytest
coverage html

Update requirements

poetry lock
poetry export -f requirements.txt --output requirements.txt --without-hashes
oetry export -f requirements.txt --output requirements-dev.txt --without-hashes --with dev

Credit

FastAPI project generated using https://github.com/rafsaf/minimal-fastapi-postgres-template