Skip to content

Commit

Permalink
fix: fixed deployment scripts in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
broomva committed Feb 9, 2024
1 parent 7b1dc2d commit 7feba6d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"host-api": "concurrently \"npm run fastapi\" \"npm run ngrok\"",
"vortex-flows-webserver": "dagster-webserver -h 0.0.0.0 -p 3001",
"vortex-flows-daemon": "dagster-daemon run",
"vortex-flows": "concurrently \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"next-dev": "next dev",
"next-start": "next start",
"dev": "pip install . && concurrently \"npm run next-dev\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"start": "pip install . && concurrently \"npm run next-start\" \"npm run host-api\" \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"dev": "pip install . && concurrently \"npm run next-dev\" \"npm run host-api\" \"npm run vortex-flows\" ",
"start": "pip install . && concurrently \"npm run next-start\" \"npm run host-api\" \"npm run vortex-flows\"",
"build": "next build && pip install .",
"lint": "next lint && black ."
},
Expand Down

0 comments on commit 7feba6d

Please sign in to comment.