Changed PORT type from number to string (#6001)

This commit is contained in:
nichols-green
2021-06-02 08:47:12 -07:00
committed by GitHub
parent 77e00b7db4
commit e1e47453ef

View File

@@ -71,7 +71,7 @@ const defaults: Record<string, any> = {
// Allows us to force certain environment variable into a type, instead of relying
// on the auto-parsed type in processValues. ref #3705
const typeMap: Record<string, string> = {
PORT: 'number',
PORT: 'string',
DB_NAME: 'string',
DB_USER: 'string',