Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gitpod/workspace-full

RUN sudo apt update && \
sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl && \
curl https://sh.rustup.rs -sSf | sh && \
source ~/.cargo/env && \
rustup default stable && \
rustup update nightly && \
rustup update stable && \
rustup target add wasm32-unknown-unknown --toolchain nightly
10 changes: 10 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Commands to start on workspace startup
tasks:
- before: source ~/.cargo/env
init: cargo build --release
# Ports to expose on workspace startup
ports:
- port: 9944
# onOpen: open-preview

image: laurenttrk/gitpod-workspace-substrate:0.0.1