This commit is contained in:
Bastian Wagner
2024-08-23 20:40:17 +02:00
parent 572eb7e6c8
commit c0cc823880
2 changed files with 4 additions and 2 deletions

View File

@@ -11,3 +11,5 @@ IGNORE_PASSWORDS=FALSE # hier kann man sich nur mit dem Username einloggen, nich
JWT_SECRET=super-geheimes-secret JWT_SECRET=super-geheimes-secret
JWT_EXPIRES_IN=10m JWT_EXPIRES_IN=10m
JWT_REFRESH_EXPIRES_IN=1w JWT_REFRESH_EXPIRES_IN=1w
APPLICATIONPORT=5000

View File

@@ -17,6 +17,6 @@ async function bootstrap() {
transform: true, // Transform is recomended configuration for avoind issues with arrays of files transformations transform: true, // Transform is recomended configuration for avoind issues with arrays of files transformations
}), }),
); );
await app.listen(3000); await app.listen(parseInt(process.env.PORT) || 5001);
} }
bootstrap(); bootstrap();