Skip to content

Commit

Permalink
changed default port because of incompatibilities with nuxt's server …
Browse files Browse the repository at this point in the history
…+ changed travis script order due to failures
  • Loading branch information
rastenis committed Jul 25, 2019
1 parent 52a52f7 commit 204277b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ install:
- npm install
- npm run setup:headless
script:
- npm run test
- npm run build
- npm run test
2 changes: 1 addition & 1 deletion config/configExample.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"port": 3000,
"port": 7777,
"url": "https://example.com",
"session_secret": "super-secret-key",
"self_hosted": false,
Expand Down
2 changes: 1 addition & 1 deletion setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 204277b

Please sign in to comment.