Skip to content

Commit

Permalink
add gitpod files
Browse files Browse the repository at this point in the history
  • Loading branch information
friedger committed Dec 5, 2020
1 parent 55233db commit bbc43c8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM gitpod/workspace-full

USER gitpod
RUN mkdir ~/tools
RUN npm install --global @stacks/cli --prefix ~/tools

ENV PATH="$HOME/tools/bin:$PATH"
ENV PATH="$HOME/.cargo/bin:$PATH"

RUN cd ~/tools; git clone https://github.com/lgalabru/clarity-repl --depth 1
RUN cd ~/tools/clarity-repl;cargo install --bin clarity-repl --path .

RUN cd ~/tools; git clone https://github.com/blockstack/stacks-blockchain --depth 1
RUN cd ~/tools/stacks-blockchain/testnet/stacks-node;cargo build --release --bin stacks-node;

USER root
10 changes: 10 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
image:
file: .gitpod.Dockerfile

tasks:
- init: yarn

vscode:
extensions:
- [email protected]:rBhb1NsIYs1/wpFyiyXNdA==
- [email protected]:Tbu8dTz0i+/bgcKQTQ5b8g==

0 comments on commit bbc43c8

Please sign in to comment.