mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-26 18:46:44 +00:00
* add admindocs * add tag export command * add filter export * switch to yaml * upload meta info to artifacts * format workflow file * fix creation command * keep all artifacts in schema repo * fix namespace * use one command for export * include tags and filters in docs * change default filename * fix call * fix itteration syntax * clean up rendering * fix formatting * simple escape
23 lines
521 B
YAML
23 lines
521 B
YAML
version: 2
|
|
|
|
mkdocs:
|
|
configuration: docs/mkdocs.yml
|
|
|
|
python:
|
|
install:
|
|
- requirements: docs/requirements.txt
|
|
- requirements: src/backend/requirements.txt
|
|
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.9"
|
|
jobs:
|
|
post_install:
|
|
- echo "Generating API schema file"
|
|
- pip install -U invoke
|
|
- invoke migrate
|
|
- invoke int.export-definitions --basedir "docs"
|
|
- invoke dev.schema --filename docs/schema.yml --ignore-warnings
|
|
- python docs/extract_schema.py docs/schema.yml
|