From c3205f23cd7815338f382bf22fa9ba8334203ad1 Mon Sep 17 00:00:00 2001 From: Al Berez Date: Tue, 6 Jun 2023 22:58:31 +0000 Subject: [PATCH] add gitpod config --- .gitpod.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..10261c0 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,34 @@ +# 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: + - name: Setup Workspace + before: > + sudo apt install --yes + icdiff + tldr + fzf + + init: > + tldr --update + + nvm install 10 + + nvm use 10 + + pyenv install 2 + + pyenv global 2 + + npm install firebase-tools@9 + + yarn install && yarn run build + command: > + firebase login --no-localhost + +vscode: + extensions: + - vscodevim.vim \ No newline at end of file