mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
13 lines
305 B
Text
13 lines
305 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
source "$(dirname "${BASH_SOURCE[0]}")/_config.sh"
|
||
|
|
|
||
|
|
_dc_run \
|
||
|
|
-e DJANGO_CONFIGURATION=Test \
|
||
|
|
app-dev \
|
||
|
|
python manage.py spectacular \
|
||
|
|
--api-version 'v1.0' \
|
||
|
|
--urlconf 'publish.api_urls' \
|
||
|
|
--format openapi-json \
|
||
|
|
--file /app/core/tests/swagger/swagger.json
|