From 9624f2fca68b4073d60af3e119d350c38ac5e87e Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Sun, 31 Dec 2023 11:53:28 +0200 Subject: [PATCH] feat: add GitPod config --- .gitpod.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..27ce758 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +image: "gitpod/workspace-bun:latest" + +tasks: + - name: "Install dependencies" + before: "curl -L https://foundry.paradigm.xyz | bash" + init: "bun install" + +vscode: + extensions: + - "esbenp.prettier-vscode" + - "NomicFoundation.hardhat-solidity"