Skip to content

Commit 1573812

Browse files
Merge pull request #391 from FormidableLabs/cosmos-port
Switch cosmos port to 5001
2 parents 9f077a5 + 6468399 commit 1573812

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
user: node
8282
environment:
8383
COSMOS_HOST: localhost
84-
COSMOS_PORT: 5000
84+
COSMOS_PORT: 5001
8585
parallelism: 4
8686
steps:
8787
- checkout

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
TZ=Europe/London
22
COSMOS_HOST=cosmos
3-
COSMOS_PORT=5000
3+
COSMOS_PORT=5001

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ Visit the [debugging docs](https://formidable.com/open-source/urql/docs/advanced
8080
8181
Have experience working with devtools extensions or want to get involved? Check out our [contributing](./CONTRIBUTING.md) docs to get started, information on setting up the project can be found [here](https://github.com/FormidableLabs/urql-devtools/blob/master/DEVELOPMENT.md).
8282
83-
8483
## Maintenance Status
8584
8685
**Active:** Formidable is actively working on this project, and we expect to continue for work for the foreseeable future. Bug reports, feature requests and pull requests are welcome.

cosmos.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"watchDirs": ["src/panel/!__image_snapshots__"],
3+
"port": 5001,
34
"webpack": {
45
"configPath": "",
56
"overridePath": "cosmos.override.js"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- PUPPETEER_EXECUTABLE_PATH=/usr/bin/google-chrome
2727
entrypoint: ["/bin/bash", "-c"]
2828
command:
29-
- npx wait-on http://cosmos:5000 && yarn jest --clearCache && yarn run visual-regression:exec
29+
- npx wait-on http://cosmos:5001 && yarn jest --clearCache && yarn run visual-regression:exec
3030
depends_on:
3131
- cosmos
3232

scripts/regression.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!/bin/sh
2-
docker-compose run --rm regression "npx wait-on http://cosmos:5000 && yarn run visual-regression:exec $@"
2+
docker-compose run --rm regression "npx wait-on http://cosmos:5001 && yarn run visual-regression:exec $@"

0 commit comments

Comments
 (0)