fix: Deno configurations

This commit is contained in:
Andras Bacsai
2022-04-20 22:23:25 +02:00
parent 14d79031c1
commit 7f8428cd17
6 changed files with 55 additions and 17 deletions

View File

@@ -264,7 +264,9 @@ export async function configureApplication({
pythonWSGI,
pythonModule,
pythonVariable,
dockerFileLocation
dockerFileLocation,
denoMainFile,
denoOptions
}: {
id: string;
buildPack: string;
@@ -280,6 +282,8 @@ export async function configureApplication({
pythonModule: string;
pythonVariable: string;
dockerFileLocation: string;
denoMainFile: string;
denoOptions: string;
}): Promise<Application> {
return await prisma.application.update({
where: { id },
@@ -296,7 +300,9 @@ export async function configureApplication({
pythonWSGI,
pythonModule,
pythonVariable,
dockerFileLocation
dockerFileLocation,
denoMainFile,
denoOptions
}
});
}