From 7f01208f29a2be397ca35983ccf4798ff43911f0 Mon Sep 17 00:00:00 2001 From: romw314 <106016361+romw314@users.noreply.github.com> Date: Sun, 3 Dec 2023 11:41:15 +0000 Subject: [PATCH] create gitpod configuration --- .gitpod.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..2c6cd02 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,14 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: yarn install && yarn run build && pip install -r requirements.txt + command: yarn run start + - name: Docs + init: pip install -r requirements.txt + command: mkdocs serve + +