mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-02-11 09:10:51 +01:00
7 lines
197 B
Bash
7 lines
197 B
Bash
|
#!/bin/sh
|
||
|
export SECRETS_FOR_DYNACONF='mobilizon_reshare/.secrets.toml'
|
||
|
poetry run sphinx-apidoc -f -o api_documentation/source/ mobilizon_reshare/
|
||
|
cd api_documentation
|
||
|
poetry run make html
|
||
|
cd ..
|