Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
chore(demo): Change port from 3000 to 5000
Browse files Browse the repository at this point in the history
  • Loading branch information
EndyKaufman authored Jul 31, 2019
1 parent 94a3eb0 commit fdd271b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/demo/src/app/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ try {
export const config: IDemoConfig = {
env: {
name: NODE_ENV,
port: process.env.PORT ? +process.env.PORT : 3000,
port: process.env.PORT ? +process.env.PORT : 5000,
protocol: process.env.PROTOCOL === 'https' ? 'https' : 'http'
},
project: {
Expand All @@ -64,7 +64,7 @@ export const config: IDemoConfig = {
useValue: {
...DEFAULT_CORE_CONFIG,
demo: process.env.DEMO === 'true',
port: process.env.PORT ? +process.env.PORT : 3000,
port: process.env.PORT ? +process.env.PORT : 5000,
protocol: process.env.PROTOCOL === 'https' ? 'https' : 'http',
externalPort: process.env.EXTERNAL_PORT ? +process.env.EXTERNAL_PORT : undefined,
domain: process.env.DOMAIN || ''
Expand Down

0 comments on commit fdd271b

Please sign in to comment.