Rename config shards in .gitignore

This commit is contained in:
Bendodroid 2024-01-31 18:16:48 +01:00
parent 2b6c9a4376
commit 4840021b08
Signed by: bendodroid
GPG key ID: 3EEE19A0F73D5FFC
2 changed files with 4 additions and 4 deletions

6
.gitignore vendored
View file

@ -11,6 +11,6 @@ spaceapid
spaceapid-state.json
# Config shards
credentials.json
dynamic.json
response.json
config-credentials.json
config-dynamic.json
config-response.json

View file

@ -55,5 +55,5 @@ Set the environment variable to a comma-separated list of config files or pass t
```shell
env CONFIG_PATH=config-template.json go run .
# OR
go run . -c credentials.json,dynamic.json,response.json
go run . -c config-credentials.json,config-dynamic.json,config-response.json
```