Skip to content

Commit

Permalink
returning default port to 8000 for azure
Browse files Browse the repository at this point in the history
  • Loading branch information
teddmason committed Oct 10, 2024
1 parent 0e009d8 commit 551e399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ The build of the webapp requires an environment variable GA_ID if google analyti
| name | description | mandatory | default value |
|---------|-------------|-----------| ------------- |
| NODE_ENV | Environment, eg development, test, production | N | development |
| SERVICE_PORT | Port for sevice to run on eg 3000 | N | 3000 |
| SERVICE_PORT | Port for sevice to run on eg 8000 | N | 8000 |
| LOG_LEVEL | Log level eg info, warn, error | N | warn |
| REDIS_HOST | Redis host name | Y | |
| REDIS_PORT | Redis port name | N | 6379 |
Expand Down
2 changes: 1 addition & 1 deletion server/utils/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Joi from 'joi'
const envs = ['development', 'test', 'production']
const defaultPort = 3000
const defaultPort = 8000
const defaultRedisPort = 6379

const getBoolean = booleanString =>
Expand Down

0 comments on commit 551e399

Please sign in to comment.