proposed fix for issue #272. args were not correctly formatted. changed the start script and development documentation

This commit is contained in:
bruno vianna 2021-11-11 14:03:15 +01:00 committed by André Staltz
parent 794a8f9755
commit f6fca892ce
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Once you are done with your changes and want to update the embedded assets to th
# cd to the root of the folder, and then run go generate
go generate ./...
# now build the server without the development mode
cd cmd/server && go build && ./server -htts-domain my.room.example
cd cmd/server && go build && ./server -htts-domain=my.room.example
```

View File

@ -5,4 +5,4 @@
# SPDX-License-Identifier: CC0-1.0
[[ -f ".env" ]] && source .env
./cmd/server/server -https-domain "${HTTPS_DOMAIN}" -repo "${REPO:-~/.ssb-go-room-secrets}" -aliases-as-subdomains "${ALIASES_AS_SUBDOMAINS}"
./cmd/server/server -https-domain="${HTTPS_DOMAIN}" -repo="${REPO:-~/.ssb-go-room-secrets}" -aliases-as-subdomains="${ALIASES_AS_SUBDOMAINS}"