We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af6df9 commit 77ce930Copy full SHA for 77ce930
package.json
@@ -0,0 +1,11 @@
1
+{
2
+ "name": "local-nexus-controller",
3
+ "version": "0.1.0",
4
+ "description": "Local service controller and dashboard",
5
+ "scripts": {
6
+ "install": "pip install --break-system-packages -r requirements.txt || pip install --user -r requirements.txt || true",
7
+ "dev": "python3 -m uvicorn local_nexus_controller.main:app --host 0.0.0.0 --port ${PORT:-5010} --reload",
8
+ "start": "python3 -m uvicorn local_nexus_controller.main:app --host 0.0.0.0 --port ${PORT:-5010}",
9
+ "build": "echo 'Python project - no build step required'"
10
+ }
11
+}
0 commit comments