mirror of
https://github.com/suitenumerique/messages.git
synced 2026-08-17 21:25:41 +02:00
This large PR modernizes the backend of the app: - Python Dependency Management: Poetry → uv - Object Storage for local dev: MinIO (now unmaintained) → RustFS - Makefile Target Standardization to align with other LaSuite repos - Internationalization Removal on backend: we only care about i18n on the frontend - Backend dependencies upgrade
9 lines
218 B
Bash
Executable File
9 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
if [ "$E2E_PROFILE" = "dev" ]; then
|
|
export FRONTEND_SERVICE_NAME="frontend-dev"
|
|
else
|
|
export FRONTEND_SERVICE_NAME="frontend"
|
|
fi
|
|
exec caddy run --config /etc/caddy/Caddyfile --adapter caddyfile
|