-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
31 lines (22 loc) · 723 Bytes
/
Copy path.gitpod.yml
File metadata and controls
31 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
tasks:
- name: install dependencies
command: |
sudo apt update
sudo apt install -y npm
# install Azle dependencies
sudo apt install -y clang
sudo apt install -y build-essential
sudo apt install -y libssl-dev
sudo apt install -y pkg-config
npm install azle
npm install
# install nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
nvm install 20
nvm use 20
# install DFX command line tool
DFX_VERSION=0.14.1 sh -ci "$(curl -fsSL https://sdk.dfinity.org/install.sh)"
export PATH="$PATH:/home/gitpod/bin"
dfx start --background
dfx --version
dfx deploy