The Bitcoin Unlimited website, hosted at https://bitcoinunlimited.info
This is a node.js project requiring the npm package manager.
The following will install the project and start the server, listening on port 8080.
git clone [email protected]:BitcoinUnlimited/BitcoinUnlimitedWeb.git
cd BitcoinUnlimitedWeb
npm install
npm run build
npm start
To test changes, execute the following after saving your changes:
npm run build
npm start
Open http://localhost:8080
to view your website.
To add a page to the website:
- Create a react component such as
your-new-page.jsx
in thesrc/public/views/pages
directory. Seesrc/public/views/pages/index.jsx
for an example. - Add your react component to the react-router in
src/public/views/main.jsx
.
npm install bitcoin-unlimited-web --save
var BitcoinUnlimitedWeb = require('bitcoin-unlimited-web');