1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-09 23:40:06 +00:00

fix(stp): return log+webout for debug on

This commit is contained in:
Saad Jutt
2022-04-02 07:06:09 +05:00
parent 7d5128c0d6
commit 3ff6f5e865
3 changed files with 7 additions and 8 deletions

View File

@@ -4,8 +4,8 @@ import appPromise from './app'
import { getCertificates } from './utils'
appPromise.then(async (app) => {
const protocol = process.env.PROTOCOL ?? 'http'
const sasJsPort = process.env.PORT ?? 5000
const protocol = process.env.PROTOCOL || 'http'
const sasJsPort = process.env.PORT || 5000
console.log('PROTOCOL: ', protocol)