Skip to content

Commit

Permalink
Basic working graph
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinkruse committed Jul 2, 2020
0 parents commit ef6ab5b
Show file tree
Hide file tree
Showing 29 changed files with 27,716 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
buidler/
Dockerfile
docker-compose.yml
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
data/
node_modules/
subgraph/integration-spike/generated/
truffle-contracts/build/
buidler/cache/
buidler/artifacts/
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:12.16.3-alpine3.9

WORKDIR /buidler-node

RUN apk update
RUN apk upgrade
RUN apk add git python make g++ bash

ADD ./buidler-node /buidler-node

RUN npm install

# Run an empty command by default - to keep container running
CMD npm run buidler-node
1 change: 1 addition & 0 deletions buidler-node/buidler.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {};
Loading

0 comments on commit ef6ab5b

Please sign in to comment.