├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── index.html ├── package.json ├── scripts └── deploy-to-gh-pages.sh └── src ├── App.js ├── App.test.js ├── components ├── Editor.js ├── Item.js ├── Item.test.js ├── Modal.css ├── Modal.js ├── Modal.test.js ├── Presets │ ├── Presets.css │ ├── Presets.js │ ├── bandwidth.json │ ├── index.js │ ├── lightningeclair.json │ ├── mining.json │ ├── nosync.json │ ├── pi.json │ ├── ports.json │ ├── pruned.json │ ├── regtest.json │ ├── testnet.json │ └── tor.json ├── Preview.css ├── Preview.js ├── Preview.test.js ├── Section.css ├── Section.js ├── Section.test.js ├── TopBar.js ├── TopBar.test.js └── controls │ └── Select.js ├── data.json ├── favicon.ico ├── index.css ├── index.js └── system.js /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/_config.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy-to-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/scripts/deploy-to-gh-pages.sh -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Editor.js -------------------------------------------------------------------------------- /src/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Item.js -------------------------------------------------------------------------------- /src/components/Item.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Item.test.js -------------------------------------------------------------------------------- /src/components/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Modal.css -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/Modal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Modal.test.js -------------------------------------------------------------------------------- /src/components/Presets/Presets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/Presets.css -------------------------------------------------------------------------------- /src/components/Presets/Presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/Presets.js -------------------------------------------------------------------------------- /src/components/Presets/bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/bandwidth.json -------------------------------------------------------------------------------- /src/components/Presets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/index.js -------------------------------------------------------------------------------- /src/components/Presets/lightningeclair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/lightningeclair.json -------------------------------------------------------------------------------- /src/components/Presets/mining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/mining.json -------------------------------------------------------------------------------- /src/components/Presets/nosync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/nosync.json -------------------------------------------------------------------------------- /src/components/Presets/pi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/pi.json -------------------------------------------------------------------------------- /src/components/Presets/ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/ports.json -------------------------------------------------------------------------------- /src/components/Presets/pruned.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/pruned.json -------------------------------------------------------------------------------- /src/components/Presets/regtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/regtest.json -------------------------------------------------------------------------------- /src/components/Presets/testnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/testnet.json -------------------------------------------------------------------------------- /src/components/Presets/tor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Presets/tor.json -------------------------------------------------------------------------------- /src/components/Preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Preview.css -------------------------------------------------------------------------------- /src/components/Preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Preview.js -------------------------------------------------------------------------------- /src/components/Preview.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Preview.test.js -------------------------------------------------------------------------------- /src/components/Section.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Section.css -------------------------------------------------------------------------------- /src/components/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Section.js -------------------------------------------------------------------------------- /src/components/Section.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/Section.test.js -------------------------------------------------------------------------------- /src/components/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/TopBar.js -------------------------------------------------------------------------------- /src/components/TopBar.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/TopBar.test.js -------------------------------------------------------------------------------- /src/components/controls/Select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/components/controls/Select.js -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/data.json -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/index.js -------------------------------------------------------------------------------- /src/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlopp/bitcoin-core-config-generator/HEAD/src/system.js --------------------------------------------------------------------------------