mirror of
https://github.com/suitenumerique/messages.git
synced 2026-04-25 17:15:21 +02:00
* 🐛(docker) stop ALL services when running make stop * ✨(docker) make sure backend is healthy before exiting docker compose up * 🧑💻 (docker) use default user and not root for healthchecks * ➖(backend) Remove dockerflow * ✨(backend) add healthcheck route, and suppress healthcheck access logs * 🚨(backend) ignore monkey patching * 🚨(backend) coderabbitai + linter fixes * 🚚(backend) remove version in healthz route * 🔨(docker) use python http lib instead of curl and remove curl from dockerfile
14 lines
308 B
Bash
Executable File
14 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/_config.sh"
|
|
|
|
_dc_run \
|
|
-e DJANGO_CONFIGURATION=Test \
|
|
--no-deps \
|
|
backend-dev \
|
|
python manage.py spectacular \
|
|
--api-version 'v1.0' \
|
|
--urlconf 'core.urls' \
|
|
--format openapi-json \
|
|
--file /app/core/api/openapi.json
|