Skip to content
Snippets Groups Projects
Select Git revision
  • 1b1898648bda2361fd6032d0da55b2bf75d41d63
  • develop default
  • master protected
  • inventoryProvider-functional
  • inventoryProvider-morework2
  • circuit-service-details-fix
  • lookup-SPECTRUM-SCHF-ports
  • inventoryProvider-1267-cleanup
  • inventoryProvider-moreWork
  • feature/DBOARD3-958
  • release/0.110
  • fix-uuid-validation-error
  • docker-poc
  • 0.160
  • 0.159
  • 0.158
  • 0.157
  • 0.156
  • 0.155
  • 0.154
  • 0.153
  • 0.152
  • 0.151
  • 0.150
  • 0.149
  • 0.148
  • 0.147
  • 0.146
  • 0.145
  • 0.144
  • 0.143
  • 0.142
  • 0.141
33 results

setup.py

Blame
  • build-docs.sh 362 B
    #!/bin/sh
    set -o errexit
    set -o nounset
    
    pip install -r requirements.txt
    pip install -e .
    
    export SETTINGS_FILENAME=./config.json.example
    python docs/dump-openapi-spec.py
    
    rm -r ./docs/build/*
    vale --config=docs/vale/.vale.ini sync
    vale --config=docs/vale/.vale.ini docs/source/*.rst lso/*.py
    sphinx-build -b html docs/source docs/build
    
    unset SETTINGS_FILENAME