Small fixes to the Makefile

This commit is contained in:
Deluan 2020-01-06 15:19:14 -05:00
parent 4c61ac3272
commit 1f4dfcb853
2 changed files with 9 additions and 3 deletions

View file

@ -1,7 +1,7 @@
BINARY=sonic-server
build:
go build -x ${BINARY}
go build
.PHONY: clean
clean:
@ -15,7 +15,7 @@ setup:
.PHONY: run
run:
@reflex -s -r "\.go$$" -- go run .
@reflex -s -r "(\.go$$|sonic.toml)" -- go run .
.PHONY: test
test:

View file

@ -35,7 +35,13 @@ $ export SONIC_MUSICFOLDER="/path/to/your/iTunes Library.xml"
$ make run
```
The server should start listening on port 4533.
The server should start listening for requests. The default configuration is:
- Port: `4533`
- User: `anyone`
- Password: `wordpass`
To override this or any other configuration, create a file named `sonic.toml` in the project folder. For all options see the [configuration.go](conf/configuration.go) file
### Development Environment