Skip to content

Commit

Permalink
fix(frontend): remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Sep 2, 2024
1 parent 0e82227 commit ee2309f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/frontend/app/routes/peers.$peerId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,6 @@ export async function action({ request }: ActionFunctionArgs) {
result.error.flatten().fieldErrors
return json({ ...actionResponse }, { status: 400 })
}
console.log(result.data.incomingAuthTokens)
const response = await updatePeer({
id: result.data.id,
http: {
Expand Down
16 changes: 16 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
set -e

echo --- Generating GraphQL types ---
pnpm --filter backend generate
echo --- Stopping Docker compose ---
pnpm localenv:compose down

echo --- Building rafiki-backend ---
sudo docker image rm rafiki-backend
sudo docker build -f ./packages/backend/Dockerfile.dev -t rafiki-backend .

cd localenv

echo --- Starting Docker compose ---
pnpm localenv:compose up -d

0 comments on commit ee2309f

Please sign in to comment.