mirror of
https://github.com/suitenumerique/messages.git
synced 2026-08-26 17:32:27 +02:00
* ✨(admin) add maildomainacess model, api route and backend tests * ♻️(drf) simplify API code
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
|