Skip to content

Commit

Permalink
Merge patch commit
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 2, 2024
2 parents c876506 + 033f48e commit 3e08b85
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ BROWSER=none
REACT_APP_API_ROOT=https://farmhand.vercel.app/
REACT_APP_NAME=$npm_package_name
REACT_APP_VERSION=$npm_package_version
REACT_APP_TURN_USERNAME=
REACT_APP_TURN_CREDENTIAL=
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jeremyckahn/farmhand",
"version": "1.18.14",
"version": "1.18.15",
"publishConfig": {
"access": "public"
},
Expand Down
16 changes: 8 additions & 8 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,23 +53,23 @@ export const rtcConfig = {
},
{
urls: 'turn:a.relay.metered.ca:80',
username: 'fd396a3275680a085c4d66cd',
credential: 'hFQmauZyx0Mv0bCK',
username: process.env.REACT_APP_TURN_USERNAME,
credential: process.env.REACT_APP_TURN_CREDENTIAL,
},
{
urls: 'turn:a.relay.metered.ca:80?transport=tcp',
username: 'fd396a3275680a085c4d66cd',
credential: 'hFQmauZyx0Mv0bCK',
username: process.env.REACT_APP_TURN_USERNAME,
credential: process.env.REACT_APP_TURN_CREDENTIAL,
},
{
urls: 'turn:a.relay.metered.ca:443',
username: 'fd396a3275680a085c4d66cd',
credential: 'hFQmauZyx0Mv0bCK',
username: process.env.REACT_APP_TURN_USERNAME,
credential: process.env.REACT_APP_TURN_CREDENTIAL,
},
{
urls: 'turn:a.relay.metered.ca:443?transport=tcp',
username: 'fd396a3275680a085c4d66cd',
credential: 'hFQmauZyx0Mv0bCK',
username: process.env.REACT_APP_TURN_USERNAME,
credential: process.env.REACT_APP_TURN_CREDENTIAL,
},
],
}
Expand Down

0 comments on commit 3e08b85

Please sign in to comment.