setup local dev env

This commit is contained in:
2026-03-10 17:13:23 +01:00
parent b27db93a90
commit f4d3fade9b
61 changed files with 6695 additions and 228 deletions

View File

@@ -5,10 +5,16 @@
"onlyBuiltDependencies": ["esbuild"]
},
"scripts": {
"ci:local": "./scripts/ci-local.sh",
"dev:campaign": "cargo run --manifest-path backend/Cargo.toml -p campaign-service",
"dev:content": "cargo run --manifest-path backend/Cargo.toml -p content-service",
"dev:symbiote": "pnpm --filter symbiote dev",
"dev:web": "pnpm --filter web dev",
"start:web": "pnpm --filter web start",
"build:campaign": "cargo build --release --manifest-path backend/Cargo.toml -p campaign-service",
"build:content": "cargo build --release --manifest-path backend/Cargo.toml -p content-service",
"build:symbiote": "pnpm --filter symbiote build",
"build:web": "pnpm --filter web build",
"build:backend": "cargo build --release"
"build:backend": "cargo build --release --manifest-path backend/Cargo.toml --workspace"
}
}