Skip to content

Commit b859abe

Browse files
authored
chore: add run-backend recipe (#306)
Also configure the domain to localhost in the local setup.
1 parent 3f9058f commit b859abe

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

justfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,8 @@ analyze-dart:
9393
# run Flutter tests
9494
[working-directory: 'app']
9595
test-flutter *args='':
96-
flutter test {{args}}
96+
flutter test
97+
98+
# run backend server (at localhost)
99+
run-backend: init-db
100+
cargo run --bin phnxserver

server/configuration/local.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
# SPDX-License-Identifier: AGPL-3.0-or-later
44

55
application:
6+
domain: localhost
67
host: 127.0.0.1

0 commit comments

Comments
 (0)