root: remove some files.

This commit is contained in:
Christopher Jeffrey 2016-11-25 19:53:08 -08:00
parent eef9bcd872
commit eda58c6c3b
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD
3 changed files with 0 additions and 66 deletions

View File

@ -1,18 +0,0 @@
FROM alpine:edge
MAINTAINER Steven Bower <steven@purse.io>
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"]

20
TODO.md
View File

@ -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

View File

@ -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"