From 204277baa3a4f3e5152a2c5948d090810ffc94f8 Mon Sep 17 00:00:00 2001 From: Matas R Date: Thu, 25 Jul 2019 17:49:03 +0300 Subject: [PATCH] changed default port because of incompatibilities with nuxt's server + changed travis script order due to failures --- .travis.yml | 2 +- config/configExample.json | 2 +- setup.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ebf26ec..a9e0a67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,5 +11,5 @@ install: - npm install - npm run setup:headless script: - - npm run test - npm run build + - npm run test diff --git a/config/configExample.json b/config/configExample.json index 2787d16..4073849 100644 --- a/config/configExample.json +++ b/config/configExample.json @@ -1,5 +1,5 @@ { - "port": 3000, + "port": 7777, "url": "https://example.com", "session_secret": "super-secret-key", "self_hosted": false, diff --git a/setup.js b/setup.js index 3bb3f75..58f7b9b 100644 --- a/setup.js +++ b/setup.js @@ -51,7 +51,7 @@ if (config.self_hosted) { } if (!config.self_hosted) { - config.port = ~~prompt("Enter port (3000): ", config.port); + config.port = ~~prompt("Enter port (7777): ", config.port); config.secure_override = ~~prompt( "Will you use an external HTTPS/TLS provider proxy? Secure cookies will be enabled, if yes (y/N): ", false