diff --git a/backend/src/prisma/prisma.service.ts b/backend/src/prisma/prisma.service.ts index 364ece7..eb1f1d2 100644 --- a/backend/src/prisma/prisma.service.ts +++ b/backend/src/prisma/prisma.service.ts @@ -12,7 +12,6 @@ export class PrismaService extends PrismaClient { }, }, }); - console.log(config.get("DB_URL")); super.$connect().then(() => console.info("Connected to the database")); } } diff --git a/package.json b/package.json index 0ffb102..c870da3 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "lint": "cd frontend && npm run lint && cd ../backend && npm run lint", "version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md", "release:patch": "npm version patch -m 'release: %s' && git push && git push --tags", - "release:minor": "npm version minor -m 'release: %s' && git push && git push --tags" + "release:minor": "npm version minor -m 'release: %s' && git push && git push --tags", + "deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ." } }