Commit ee2309f 1 parent 0e82227 commit ee2309f Copy full SHA for ee2309f
File tree 2 files changed +16
-1
lines changed
packages/frontend/app/routes
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -441,7 +441,6 @@ export async function action({ request }: ActionFunctionArgs) {
441
441
result . error . flatten ( ) . fieldErrors
442
442
return json ( { ...actionResponse } , { status : 400 } )
443
443
}
444
- console . log ( result . data . incomingAuthTokens )
445
444
const response = await updatePeer ( {
446
445
id : result . data . id ,
447
446
http : {
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -e
3
+
4
+ echo --- Generating GraphQL types ---
5
+ pnpm --filter backend generate
6
+ echo --- Stopping Docker compose ---
7
+ pnpm localenv:compose down
8
+
9
+ echo --- Building rafiki-backend ---
10
+ sudo docker image rm rafiki-backend
11
+ sudo docker build -f ./packages/backend/Dockerfile.dev -t rafiki-backend .
12
+
13
+ cd localenv
14
+
15
+ echo --- Starting Docker compose ---
16
+ pnpm localenv:compose up -d
You can’t perform that action at this time.
0 commit comments