mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Change default db path
This commit is contained in:
parent
a99c3a8af3
commit
a167669717
4 changed files with 7 additions and 5 deletions
6
Makefile
6
Makefile
|
@ -2,11 +2,11 @@ GO_VERSION=1.13
|
|||
NODE_VERSION=12.14.1
|
||||
|
||||
.PHONY: run
|
||||
run: check_go_env
|
||||
run: check_go_env data
|
||||
@reflex -d none -c reflex.conf
|
||||
|
||||
.PHONY: dev
|
||||
dev: check_env
|
||||
dev: check_env data
|
||||
@goreman -f Procfile.dev -b 4533 start
|
||||
|
||||
.PHONY: test
|
||||
|
@ -46,3 +46,5 @@ check_node_env:
|
|||
@(hash node) || (echo "\nERROR: Node environment not setup properly!\n"; exit 1)
|
||||
@node --version | grep -q $(NODE_VERSION) || (echo "\nERROR: Please check your Node version. Should be $(NODE_VERSION)\n"; exit 1)
|
||||
|
||||
data:
|
||||
mkdir data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue