mirror of
https://github.com/suitenumerique/messages.git
synced 2026-09-26 19:54:54 +02:00
* ✨(dns) add admin page for DNS records. Fixes #177 * 👷(dockerflow) add a flag to disable Dockerflow * 💚(ghactions) fix check-api-update that was missing Orval * 💚(ci) fix tests that depended on Keycloak * ♻️(admin) refactor CopyableInput into a separate component * 🎨(dns) improve code style
15 lines
344 B
Bash
Executable File
15 lines
344 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/_config.sh"
|
|
|
|
_dc_run \
|
|
-e DJANGO_CONFIGURATION=Test \
|
|
-e DJANGO_ENABLE_DOCKERFLOW=0 \
|
|
--no-deps \
|
|
backend-dev \
|
|
python manage.py spectacular \
|
|
--api-version 'v1.0' \
|
|
--urlconf 'core.urls' \
|
|
--format openapi-json \
|
|
--file /app/core/api/openapi.json
|