1
0
mirror of https://github.com/stonith404/pingvin-share.git synced 2024-06-30 06:30:11 +02:00

chore: add dev deployment script

This commit is contained in:
Elias Schneider 2022-10-31 10:28:46 +01:00
parent 99de4e57e1
commit 46d667776f
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,6 @@ export class PrismaService extends PrismaClient {
},
},
});
console.log(config.get("DB_URL"));
super.$connect().then(() => console.info("Connected to the database"));
}
}

View File

@ -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 ."
}
}