We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73328a2 commit 87419a3Copy full SHA for 87419a3
run
@@ -6,6 +6,7 @@
6
# For local development only.
7
8
COMPOSE="docker compose -f deployment/development/docker-compose.yml --project-directory . -p appbuilder-buildengine-api"
9
+CI_COMPOSE="docker compose -f deployment/ci/docker-compose.yml --project-directory . -p appbuilder-buildengine-api-ci"
10
11
function runstuff {
12
# First arg
@@ -37,6 +38,16 @@ function runstuff {
37
38
npx prisma migrate reset --force --schema src/lib/prisma/schema.prisma
39
;;
40
41
+ ##################
42
+ # Testing
43
+ ci:build)
44
+ ${CI_COMPOSE} build
45
+ ;;
46
+
47
+ ci)
48
+ ${CI_COMPOSE} $arguments
49
50
51
################
52
# Host-Machine Utils
53
0 commit comments