• Guillaume Blanchy's avatar
    Updates for working webinterface with new process_commands() · d0fde750
    Guillaume Blanchy authored
    - fix passing sequence with new process_commands
    - update process_commands as json.loads() parse recursively
    - update index.html pseudo-section (+ hover info)
    - comment double info log in run_sequence_async
    - fix update_settings by adding '_settings' to common cmd_id with set_sequence (from http_interface)
    d0fde750
.gitlab-ci.yml 569 bytes
image: python:3.9-bullseye
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/plain-html
pages:
  stage: deploy
  script:
  - apt-get update
  - apt-get install --assume-yes pandoc
  - pip install numpy pandas termcolor paho-mqtt zmq  # top import of Ohmpi.py
  - pip install sphinx numpydoc sphinx_rtd_theme pandoc recommonmark
  - cd doc
  - make html
  # also make latex? pdf?
  - cd ..
  - mv doc/build/html/ public/
  - ls public/
  artifacts:
    paths:
    - public/
  only:
  - master