
* ♻️ Refactor backend, update DB session handling * ✨ Add mypy config and plugins * ➕ Use Python-jose instead of PyJWT as it has some extra functionalities and features * ✨ Add/update scripts for test, lint, format * 🔧 Update lint and format configs * 🎨 Update import format, comments, and types * 🎨 Add types to config * ✨ Add types for all the code, and small fixes * 🎨 Use global imports to simplify exploring with Jupyter * ♻️ Import schemas and models, instead of each class * 🚚 Rename db_session to db for simplicity * 📌 Update dependencies installation for testing
19 lines
566 B
Bash
19 lines
566 B
Bash
#! /usr/bin/env sh
|
|
|
|
# Exit in case of error
|
|
set -e
|
|
|
|
DOMAIN=backend \
|
|
SMTP_HOST="" \
|
|
TRAEFIK_PUBLIC_NETWORK_IS_EXTERNAL=false \
|
|
INSTALL_DEV=true \
|
|
docker-compose \
|
|
-f docker-compose.yml \
|
|
config > docker-stack.yml
|
|
|
|
docker-compose -f docker-stack.yml build
|
|
docker-compose -f docker-stack.yml down -v --remove-orphans # Remove possibly previous broken stacks left hanging after an error
|
|
docker-compose -f docker-stack.yml up -d
|
|
docker-compose -f docker-stack.yml exec -T backend bash /app/tests-start.sh "$@"
|
|
docker-compose -f docker-stack.yml down -v --remove-orphans
|