| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Blockstack is a new decentralized internet where users own their data and apps run locally.
This is a developer preview.
Pull the blockstack container and run it, dropping to a shell
docker pull tklx/blockstack
docker run --rm -it \
-p 127.0.0.1:1337:1337 \
-p 127.0.0.1:3000:3000 \
-p 127.0.0.1:6270:6270 \
tklx/blockstack /bin/bashIn the shell, setup blockstack core and start the api
source /blockstack/core/bin/activate
BITCOIN_WALLET_PASSWORD=$(mcookie)
blockstack setup -y --password "$BITCOIN_WALLET_PASSWORD"
sed -i "s/localhost/0.0.0.0/" ~/.blockstack/client.ini
blockstack api start -y --password "$BITCOIN_WALLET_PASSWORD" --debugTake note of your wallet and api passwords
echo $BITCOIN_WALLET_PASSWORD
grep api_password ~/.blockstack/client.ini | sed 's/api_password = //g'Start the cors proxy and browser portal
cd /blockstack/portal
CORSPROXY_HOST=0.0.0.0 npm run dev-proxy &
npm run devBrowse to http://localhost:3000 (the portal). You'll need to enter the api password you took note of above.
Tip: setup a protocol-handler
The Docker image is built, and pushed by CircleCI from source hosted on GitHub.
TKLX uses a central issue tracker on GitHub for reporting and tracking of bugs, issues and feature requests.
| Back | FazBrowse Home | New Git URL |