chore: rename from bee status to bee dashboard (#70)
This commit is contained in:
@@ -16,5 +16,5 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
token: ${{ secrets.REPO_GHA_PAT }}
|
token: ${{ secrets.REPO_GHA_PAT }}
|
||||||
release-type: node
|
release-type: node
|
||||||
package-name: bee-status
|
package-name: bee-dashboard
|
||||||
bump-minor-pre-major: true
|
bump-minor-pre-major: true
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
# Bee Status
|
# Bee Status
|
||||||
|
|
||||||
[](https://david-dm.org/ethersphere/bee-status)
|
[](https://david-dm.org/ethersphere/bee-dashboard)
|
||||||
[](https://swarm.ethereum.org/)
|
[](https://swarm.ethereum.org/)
|
||||||
[](https://github.com/RichardLitt/standard-readme)
|
[](https://github.com/RichardLitt/standard-readme)
|
||||||
[](https://github.com/feross/standard)
|
[](https://github.com/feross/standard)
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
> Simple dApp to show the status of the bee node. The goal is to help users setup their bee nodes.
|
> An app which helps users to setup their Bee node and do actions like cash out cheques.
|
||||||
|
|
||||||
**Warning: This project is in alpha state. There might (and most probably will) be changes in the future to its API and working. Also, no guarantees can be made about its stability, efficiency, and security at this stage.**
|
**Warning: This project is in alpha state. There might (and most probably will) be changes in the future to its API and working. Also, no guarantees can be made about its stability, efficiency, and security at this stage.**
|
||||||
|
|
||||||
@@ -28,9 +28,9 @@
|
|||||||
## Install
|
## Install
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone git@github.com:ethersphere/bee-status.git
|
git clone git@github.com:ethersphere/bee-dashboard.git
|
||||||
|
|
||||||
cd bee-status
|
cd bee-dashboard
|
||||||
|
|
||||||
npm ci
|
npm ci
|
||||||
```
|
```
|
||||||
@@ -47,7 +47,7 @@ serve -s ./build
|
|||||||
|
|
||||||
There are some ways you can make this module better:
|
There are some ways you can make this module better:
|
||||||
|
|
||||||
- Consult our [open issues](https://github.com/ethersphere/bee-status/issues) and take on one of them
|
- Consult our [open issues](https://github.com/ethersphere/bee-dashboard/issues) and take on one of them
|
||||||
- Help our tests reach 100% coverage!
|
- Help our tests reach 100% coverage!
|
||||||
- Join us in our [Mattermost chat](https://beehive.ethswarm.org/swarm/channels/swarm-javascript) if you have questions or want to give feedback
|
- Join us in our [Mattermost chat](https://beehive.ethswarm.org/swarm/channels/swarm-javascript) if you have questions or want to give feedback
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "bee-status",
|
"name": "bee-dashboard",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Simple dApp to show the status of the bee node",
|
"description": "An app which helps users to setup their Bee node and do actions like cash out cheques",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bee",
|
"bee",
|
||||||
"swarm",
|
"swarm",
|
||||||
@@ -13,12 +13,12 @@
|
|||||||
],
|
],
|
||||||
"homepage": ".",
|
"homepage": ".",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ethersphere/bee-status/issues/"
|
"url": "https://github.com/ethersphere/bee-dashboard/issues/"
|
||||||
},
|
},
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/ethersphere/bee-status.git"
|
"url": "https://github.com/ethersphere/bee-dashboard.git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ethersphere/bee-js": "^0.7.1",
|
"@ethersphere/bee-js": "^0.7.1",
|
||||||
|
|||||||
+2
-2
@@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="Bee node status"
|
content="Bee Dashboard"
|
||||||
/>
|
/>
|
||||||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
|
||||||
<!--
|
<!--
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
work correctly both with client-side routing and a non-root public URL.
|
work correctly both with client-side routing and a non-root public URL.
|
||||||
Learn how to configure a non-root public URL by running `npm run build`.
|
Learn how to configure a non-root public URL by running `npm run build`.
|
||||||
-->
|
-->
|
||||||
<title>Bee node status</title>
|
<title>Bee Dashboard</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"short_name": "Bee node status",
|
"short_name": "Bee Dashboard",
|
||||||
"name": "Bee node status",
|
"name": "Bee Dashboard",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "favicon.ico",
|
"src": "favicon.ico",
|
||||||
|
|||||||
Reference in New Issue
Block a user