Skip to content

Commit

Permalink
Merge pull request #64 from ghostc0des/main
Browse files Browse the repository at this point in the history
Update Immich server port to 2283 in environment.ts
  • Loading branch information
varun-raj authored Nov 23, 2024
2 parents 2abad9a + bf8027b commit 6985afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/environment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const ENV = {
IMMICH_URL: (process.env.IMMICH_URL || 'http://immich_server:3001') as string,
IMMICH_URL: (process.env.IMMICH_URL || 'http://immich_server:2283') as string,
EXTERNAL_IMMICH_URL: (process.env.EXTERNAL_IMMICH_URL || process.env.IMMICH_URL) as string,
IMMICH_API_KEY: process.env.IMMICH_API_KEY as string,
DATABASE_URL: (process.env.DATABASE_URL || `postgresql://${process.env.DB_USERNAME}:${process.env.DB_PASSWORD}@${(process.env.DB_HOST || 'immich_postgres')}:${(process.env.DB_PORT || '5432')}/${process.env.DB_DATABASE_NAME}`),
Expand Down

0 comments on commit 6985afc

Please sign in to comment.