Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bittorrent/btfs-dashboard
A Client helps users to manage their BTFS nodes
https://github.com/bittorrent/btfs-dashboard
Last synced: about 1 month ago
JSON representation
A Client helps users to manage their BTFS nodes
- Host: GitHub
- URL: https://github.com/bittorrent/btfs-dashboard
- Owner: bittorrent
- License: other
- Created: 2021-11-24T10:41:58.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T02:41:24.000Z (2 months ago)
- Last Synced: 2024-10-30T05:08:52.778Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.18 MB
- Stars: 26
- Watchers: 13
- Forks: 25
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Usage
:warning: To successfully connect to the BTFS node, you will need to enable the CORS. Follow below commands and then restart the BTFS node.
```
btfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["http://dashboard.btfs.io", "http://127.0.0.1:5001"]'
btfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["PUT","GET","POST"]'
```## Website
Browse http://dashboard.btfs.io## Docker
Run docker image and browse http://localhost```sh
docker run -d -p 127.0.0.1:80:80 ghcr.io/bittorrent/btfs-dashboard:master
```
## DevelopmentInstall node.js and run below command
https://nodejs.org/en/```sh
git clone https://github.com/bittorrent/btfs-dashboard.gitcd btfs-dashboard
npm install
npm start
```