fix(server-docker): Use port 3000 as default port.

This commit is contained in:
SamTolmay 2021-06-07 15:04:09 +02:00
parent 29e42cfb7a
commit 53bbc5fc13

View File

@ -19,7 +19,7 @@ import shellLocation from '@lowdefy/shell';
import { createGetSecretsFromEnv } from '@lowdefy/node-utils';
const configurationBasePath = process.env.LOWDEFY_SERVER_CONFIGURATION_PATH || './build';
const port = parseInt(process.env.LOWDEFY_SERVER_PORT) || 443;
const port = parseInt(process.env.LOWDEFY_SERVER_PORT) || 3000;
const server = getServer({
configurationBasePath,