Skip to content

Commit 3aba7eb

Browse files
committed
Run development server on ports 8090 & 8091.
1 parent 2f1bae9 commit 3aba7eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"posttest": "php test/cleanup.php",
1414
"release": "node scripts/release.js",
1515
"postinstall": "composer install",
16-
"start:client": "php -S 127.0.0.1:8080 test/client.php",
17-
"start:server": "php -S 127.0.0.1:8081 test/server.php",
16+
"start:client": "php -S 127.0.0.1:8090 test/client.php",
17+
"start:server": "php -S 127.0.0.1:8091 test/server.php",
1818
"start": "npm-run-all --parallel start:client start:server"
1919
},
2020
"repository": {

test/client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
$config = $wire->fuel('config');
2020

2121
$config->js('ProcessGraphQL', [
22-
'GraphQLServerUrl' => 'http://localhost:8081',
22+
'GraphQLServerUrl' => 'http://127.0.0.1:8091',
2323
]);
2424

2525
$config->scripts->add("https://unpkg.com/es6-promise@4.2.8/dist/es6-promise.auto.min.js");

0 commit comments

Comments
 (0)