mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
🐛 Fix for ACTUAL_PORT and PORT vars (#4537)
* Fix for ACTUAL_PORT and PORT vars * md
This commit is contained in:
@@ -64,8 +64,8 @@ const configSchema = convict({
|
||||
port: {
|
||||
doc: 'Port to run the server on.',
|
||||
format: 'port',
|
||||
default: 5006,
|
||||
env: ['ACTUAL_PORT', 'PORT'],
|
||||
default: process.env.PORT ? process.env.PORT : 5006,
|
||||
env: 'ACTUAL_PORT',
|
||||
},
|
||||
hostname: {
|
||||
doc: 'Server hostname.',
|
||||
|
||||
6
upcoming-release-notes/4537.md
Normal file
6
upcoming-release-notes/4537.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [lelemm]
|
||||
---
|
||||
|
||||
Fix for ACTUAL_PORT and PORT vars
|
||||
Reference in New Issue
Block a user