mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-15 01:14:27 -05:00
chore: add dev deployment script
This commit is contained in:
parent
99de4e57e1
commit
46d667776f
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,6 @@ export class PrismaService extends PrismaClient {
|
|||
},
|
||||
},
|
||||
});
|
||||
console.log(config.get("DB_URL"));
|
||||
super.$connect().then(() => console.info("Connected to the database"));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 ."
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue