scipts for starting

This commit is contained in:
2026-03-08 02:29:33 +01:00
parent 4f64d998ef
commit 8b1a96f133
3 changed files with 17 additions and 0 deletions

9
start-back.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
cd "$(dirname "$0")/dotnet"
dotnet run --project AipsWebApi 2>&1 | sed "s/^/[WebApi] /" &
dotnet run --project AipsRT 2>&1 | sed "s/^/[RT] /" &
dotnet run --project AipsWorker 2>&1 | sed "s/^/[Worker] /" &
trap 'kill $(jobs -p) 2>/dev/null' EXIT
wait

4
start-front.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
cd "$(dirname "$0")/front"
bun dev

4
start-infra.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
cd "$(dirname "$0")/docker"
docker compose -p aips --env-file ../.env up