This commit is contained in:
Andras Bacsai 2022-11-03 14:16:51 +01:00
parent 214114e6ce
commit 780d03e5e1
3 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ const host = '0.0.0.0';
await socketIOServer(fastify)
console.log(`Coolify's API is listening on ${host}:${port}`);
await migrateServicesToNewTemplate()
migrateServicesToNewTemplate()
await initServer();
const graceful = new Graceful({ brees: [scheduler] });

View File

@ -352,7 +352,7 @@ async function vscodeserver(service: any, template: any) {
await migrateSecrets(secrets, service);
// Disconnect old service data
await prisma.service.update({ where: { id: service.id }, data: { vscodeserver: { disconnect: true } } })
// await prisma.service.update({ where: { id: service.id }, data: { vscodeserver: { disconnect: true } } })
}
async function minio(service: any, template: any) {
const { rootUser, rootUserPassword, apiFqdn } = service.minio

File diff suppressed because one or more lines are too long