mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
refactor(server): port env (#13158)
This commit is contained in:
parent
bf43c32dbf
commit
892a35acb5
4 changed files with 4 additions and 2 deletions
|
|
@ -32,12 +32,11 @@ async function bootstrap() {
|
|||
|
||||
otelStart(otelPort);
|
||||
|
||||
const port = Number(process.env.IMMICH_PORT) || 3001;
|
||||
const app = await NestFactory.create<NestExpressApplication>(ApiModule, { bufferLogs: true });
|
||||
const logger = await app.resolve<ILoggerRepository>(ILoggerRepository);
|
||||
const configRepository = app.get<IConfigRepository>(IConfigRepository);
|
||||
|
||||
const { environment } = configRepository.getEnv();
|
||||
const { environment, port } = configRepository.getEnv();
|
||||
const isDev = environment === ImmichEnvironment.DEVELOPMENT;
|
||||
|
||||
logger.setAppName('Api');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue