Skip to content

Commit

Permalink
chore: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryQW committed May 31, 2024
1 parent 403b1c5 commit 4398776
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@

dist/

.idea/
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ before:
builds:
- env:
- CGO_ENABLED=0
binary: node-compose
binary: node-automated-deployer
goos:
- linux
- windows
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Node Compose
# Node Automated Deployer

a tool to generate dsl node with `docker-compose.yaml`
This Deployer automatically deploys an RSS3 DSL Node based on a `config.yaml` file.


## Usage

### Download

download the latest release from [release page](https://github.com/RSS3-Network/Node-Compose/releases)
download the latest release from [release page](https://github.com/RSS3-Network/Node-Automated-Deployer/releases)

```bash
tar -zxvf node-compose-v0.1.0-linux-amd64.tar.gz
tar -zxvf node-automated-deployer-v0.1.0-linux-amd64.tar.gz
```

### Configuration
Expand All @@ -20,6 +20,6 @@ create a `config.yaml` file in the subdirectory `config` of the executable file.
### Generate

```bash
./node-compose > docker-compose.yaml
./node-automated-deployer > docker-compose.yaml
```

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/rss3-network/node-compose
module github.com/rss3-network/node-automated-deployer

go 1.22.3

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/rss3-network/node-compose/pkg/cmd"
"github.com/rss3-network/node-automated-deployer/pkg/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/rss3-network/node-compose/pkg/compose"
"github.com/rss3-network/node-automated-deployer/pkg/compose"
"github.com/rss3-network/node/config"
"github.com/spf13/cobra"
"gopkg.in/yaml.v3"
Expand Down

0 comments on commit 4398776

Please sign in to comment.