diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a961bbda..00000000 --- a/Dockerfile +++ /dev/null @@ -1,18 +0,0 @@ -FROM alpine:edge -MAINTAINER Steven Bower - -RUN apk update && \ - apk upgrade -RUN apk add nodejs bash unrar git python build-base make - -RUN mkdir /code /data -ADD . /code -WORKDIR /code - -RUN npm install --production -RUN npm uninstall node-gyp - -RUN apk del unrar git python build-base make && \ - rm /var/cache/apk/* - -CMD ["node", "/code/bin/node"] diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 0b0a7eb2..00000000 --- a/TODO.md +++ /dev/null @@ -1,20 +0,0 @@ -# Todo - -Todo before release. Excuse the mess. - -- prioritization for mining. -- switch entirely to secp256k1-node. note that payment-protocol still directly - requires elliptic. -- walletdb removes coins from txs - potentially have it clone the tx (slower). -- refactor and add all network packets. -- rename keyring object. -- browser-side dsa signing/verify for payment-protocol. -- do not output bitcoin strings (utils.btc) on the api layer. use satoshis - instead. -- implement jl's latest MAST. -- rewrite readme. move examples to wiki. -- fix docs. -- implement rpc calls: - - listaddressgroupings - - importaddress (maybe) -- man pages diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 18205381..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: '2' - -services: - bcoin: - build: . - ports: - #-- Mainnet - #- "8333:8333" - #- "8332:8332" # RPC - #-- Testnet - #- "18333:18333" - #- "18332:18332" # RPC - #-- SEGNET4 - - "28901:28901" - - "28902:28902" # RPC - environment: - BCOIN_NETWORK: segnet4 # main, testnet - BCOIN_PREFIX: /data - networks: - - "bcoin" - volumes: - - ./docker_data:/data - -networks: - bcoin: - external: - # docker network create bcoin - name: "bcoin"