rtapp-verify-backend-autocode/.gitpod.yml

18 lines
422 B
YAML

image:
file: .gitpod.Dockerfile
tasks:
# Install packages, preloads user's librc in its base64-encoded form and decode back to ~/.librc
- init: |
npm install
before: |
eval $(gp env -e)
if [[ $STDLIBRC != "" ]]; then
echo $STDLIBRC | base64 -d | tee ~/.librc.test >> /dev/null
fi
command: npn run dev
vscode:
extensions:
- GitLab.gitlab-workflow
- exiasr.hadolint