From 2a5de6df3641c8991402a052f83963c262848d44 Mon Sep 17 00:00:00 2001 From: mifi Date: Sun, 28 Dec 2025 14:12:08 -0300 Subject: [PATCH] Resolve start-up errors --- backend/package.json | 3 ++- package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/backend/package.json b/backend/package.json index c3a3bf8..fa0ffc4 100644 --- a/backend/package.json +++ b/backend/package.json @@ -3,7 +3,8 @@ "version": "0.2.1", "private": true, "scripts": { - "start": "node ./src/bin/www" + "start": "node ./src/bin/www", + "dev": "nodemon ./src/bin/www" }, "dependencies": { "@google/maps": "^0.4.5", diff --git a/package.json b/package.json index be6b60f..50c5d42 100644 --- a/package.json +++ b/package.json @@ -10,9 +10,9 @@ "scripts": { "dev:all": "concurrently \"npm run dev:backend\" \"npm run dev:app\"", "dev:backend": "cd backend && npm run dev", - "dev:app": "cd app && ionic serve --host=0.0.0.0 --port=8100", + "dev:app": "cd app && npm run ionic:serve -- --address 0.0.0.0 --port 8100", "dev:backend-only": "cd backend && npm run dev", - "dev:app-only": "cd app && ionic serve --host=0.0.0.0 --port=8100", + "dev:app-only": "cd app && npm run ionic:serve -- --address 0.0.0.0 --port 8100", "install:all": "npm install && npm run install:workspaces", "install:workspaces": "npm install --workspaces", "seed": "cd backend && npm run seed",