I have updated all references of "Impress" to "Meet". Migrations were manually updated and not regenerated. Never-mind, they all will be squashed before the first release. I have also searched for reference to "Magnify", and replaced them by "Meet". While updating the backend sources, I have also fixed other parts of the project, namely: - Compose file - Github documentation and CI - Makefile commands
13 lines
302 B
Bash
Executable File
13 lines
302 B
Bash
Executable File
#!/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 'meet.api_urls' \
|
|
--format openapi-json \
|
|
--file /app/core/tests/swagger/swagger.json
|