Resolve start-up errors

This commit is contained in:
2025-12-28 14:12:08 -03:00
parent 7fa78e870b
commit 2a5de6df36
2 changed files with 4 additions and 3 deletions

View File

@@ -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",

View File

@@ -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",