Skip to content
Snippets Groups Projects
Unverified Commit fc533afd authored by Angelo Capossele's avatar Angelo Capossele Committed by GitHub
Browse files

Merge pull request #276 from iotaledger/feat/rename-config

Rename config.json to config.default.json
parents d1afe2b3 899ee3d3
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,8 @@ jobs: ...@@ -15,6 +15,8 @@ jobs:
steps: steps:
- name: Check out code into the Go module directory - name: Check out code into the Go module directory
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Copy config.default.json to config.json
run: cp config.default.json config.json
- name: Release GoShimmer - name: Release GoShimmer
run: goreleaser --rm-dist run: goreleaser --rm-dist
env: env:
......
...@@ -26,4 +26,6 @@ objectsdb/ ...@@ -26,4 +26,6 @@ objectsdb/
# OSX related files # OSX related files
.DS_Store .DS_Store
shimmer shimmer
goshimmer goshimmer
\ No newline at end of file
config.json
\ No newline at end of file
...@@ -148,7 +148,16 @@ If Go is installed, you should see the version that's installed. ...@@ -148,7 +148,16 @@ If Go is installed, you should see the version that's installed.
2. Change into the `goshimmer` directory 2. Change into the `goshimmer` directory
3. Use one of the following commands to build your executable file, depending on your operating system 3. Copy and adjust `config.default.json`
```bash
# Linux and macOS
cp config.default.json config.json
# Windows
copy config.default.json config.json
```
4. Use one of the following commands to build your executable file, depending on your operating system
```bash ```bash
# Linux and macOS # Linux and macOS
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment