Skip to content

Commit

Permalink
chore(port): Set to 4000 to avoid osx gotchas
Browse files Browse the repository at this point in the history
  • Loading branch information
damassi committed Jul 18, 2022
1 parent 15693e3 commit e347e9e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@
APP_TIMEOUT=29s
API_REQUEST_TIMEOUT=10000
NODE_ENV=development
PORT=5000
PORT=4000
USER_TYPE=Admin
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Start the server:
yarn start
```

Force should now be running at [http://localhost:5000/](http://localhost:5000/).
Force should now be running at [http://localhost:4000/](http://localhost:4000/).

## Run the tests

Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const PAGE_CACHE_TYPES: any = "artist"
export const PAGE_CACHE_VERSION: any = "1"
export const PC_ARTSY_CHANNEL: any = "5759e508b5989e6f98f77999"
export const PC_AUCTION_CHANNEL: any = "5759e4d7b5989e6f98f77997"
export const PORT: any = 5000
export const PORT: any = 4000
export const POSITRON_URL: any = "http://writer.artsy.net"
export const PREDICTION_URL: any = "https://live.artsy.net"
export const PUBLIC_GOOGLE_MAPS_API_KEY: any = null
Expand Down
4 changes: 2 additions & 2 deletions src/v2/Components/NavBar/__tests__/NavBar.jest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("NavBar", () => {
it("renders logged out items", () => {
const wrapper = getWrapper()
expect(wrapper.html()).toContain("Log In")
expect(wrapper.html()).toContain("Sign up")
expect(wrapper.html()).toContain("Sign Up")
expect(wrapper.find(BellIcon).length).toEqual(0)
expect(wrapper.find(SoloIcon).length).toEqual(0)
})
Expand All @@ -73,7 +73,7 @@ describe("NavBar", () => {
// @ts-expect-error PLEASE_FIX_ME_STRICT_NULL_CHECK_MIGRATION
const wrapper = getWrapper({ user: true })
expect(wrapper.html()).not.toContain("Log In")
expect(wrapper.html()).not.toContain("Sign up")
expect(wrapper.html()).not.toContain("Sign Up")
expect(wrapper.find(BellIcon).length).toEqual(1)
expect(wrapper.find(SoloIcon).length).toEqual(1)
})
Expand Down
2 changes: 1 addition & 1 deletion src/v2/System/locales/en-US/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"museums":"Museums",
"viewingRooms":"Viewing Rooms",
"nfts":"NFTs",
"signup":"Sign up",
"signup":"Sign Up",
"login":"Log In",
"sell":"Sell",
"priceDatabase":"Price Database",
Expand Down
2 changes: 1 addition & 1 deletion src/v2/System/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"museums":"Museums",
"viewingRooms":"Viewing Rooms",
"nfts":"NFTs",
"signup":"Sign up",
"signup":"Sign Up",
"login":"Log In",
"sell":"Sell",
"priceDatabase":"Price Database",
Expand Down

0 comments on commit e347e9e

Please sign in to comment.