feat: add initial project setup and configuration files

This commit is contained in:
2025-05-28 21:28:22 +02:00
commit a808c021ba
14 changed files with 178 additions and 0 deletions

8
setup.sh Executable file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
export MY_UID=$(id -u)
export MY_GID=$(id -g)
docker compose down
docker compose up --build --detach --timestamps
docker compose logs --follow | grep -E 'python|error|app'