port
This commit is contained in:
@@ -11,3 +11,5 @@ IGNORE_PASSWORDS=FALSE # hier kann man sich nur mit dem Username einloggen, nich
|
||||
JWT_SECRET=super-geheimes-secret
|
||||
JWT_EXPIRES_IN=10m
|
||||
JWT_REFRESH_EXPIRES_IN=1w
|
||||
|
||||
APPLICATIONPORT=5000
|
||||
@@ -17,6 +17,6 @@ async function bootstrap() {
|
||||
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();
|
||||
|
||||
Reference in New Issue
Block a user