Commit 63dd766f authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

add initial air-sans app

parent dedbe0c8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
[codespell]
skip = **/package-lock.json
+7 −0
Original line number Diff line number Diff line
FROM kitware/trame

# Copy the server directory
COPY --chown=trame-user:trame-user . /local-app
COPY --chown=trame-user:trame-user .deploy /deploy

RUN /opt/trame/entrypoint.sh build
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
trame: # Default app under /index.html
  app: air-sans
  args:
    - --data
    - /local-app/data
+3 −0
Original line number Diff line number Diff line
# Install app from local directory
pip install wheel # needed to install /local-app
pip install /local-app

trame/air-sans/.flake8

0 → 100644
+8 −0
Original line number Diff line number Diff line
[flake8]

ignore =
    # Black and flake8 conflict here
    E203
    # Just assume black did a good job with the line lengths
    E501
Loading