Skip to content

Commit

Permalink
Merge pull request #161 from us3r-network/B-updateEnv-bufan
Browse files Browse the repository at this point in the history
update env
  • Loading branch information
Tonyce authored Jul 10, 2023
2 parents 4ad8689 + 539ccdf commit 75a8d21
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions packages/client/dashboard/.env.example
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
REACT_APP_NAME=s3-dashboard
REACT_APP_NAME=US3R DASHBOARD
REACT_APP_VERSION=$npm_package_version

REACT_APP_UPLOAD_API_URL=https://test-enchanft-backend.onrender.com
REACT_APP_UPLOAD_API_URL=https://api-dev.u3.xyz

REACT_APP_CERAMIC_MAINNET_HOST=https://ceramic-miannet.s3.xyz
REACT_APP_CERAMIC_TESTNET_HOST=https://ceramic-testnet.s3.xyz
REACT_APP_CERAMIC_MAINNET_HOST=https://gcp-ceramic-mainnet-dev.s3.xyz
REACT_APP_CERAMIC_TESTNET_HOST=https://gcp-ceramic-testnet-dev.s3.xyz

REACT_APP_DOCS_URL=https://docs.userscan.app
REACT_APP_DOCS_URL=https://component-doc.s3.xyz/

REACT_APP_API_BASE_URL=https://api-test.s3.xyz
REACT_APP_API_BASE_URL=https://api-dev.s3.xyz

REACT_APP_S3_SCAN_URL=https://scan-dev.s3.xyz
10 changes: 5 additions & 5 deletions packages/client/scan/.env.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
REACT_APP_NAME=userscan-client
REACT_APP_NAME=US3R SCAN
REACT_APP_VERSION=$npm_package_version

REACT_APP_API_BASE_URL = http://localhost:3002
REACT_APP_UPLOAD_API_URL=https://test-enchanft-backend.onrender.com
REACT_APP_API_BASE_URL = https://api-dev.s3.xyz
REACT_APP_UPLOAD_API_URL=https://api-dev.u3.xyz

REACT_APP_CERAMIC_MAINNET_HOST=https://ceramic-miannet.s3.xyz
REACT_APP_CERAMIC_TESTNET_HOST=https://ceramic-testnet.s3.xyz
REACT_APP_CERAMIC_MAINNET_HOST=https://gcp-ceramic-mainnet-dev.s3.xyz
REACT_APP_CERAMIC_TESTNET_HOST=https://gcp-ceramic-testnet-dev.s3.xyz

REACT_APP_WALLET_CONNECT_PROJECT_ID = c652d0148879353d7e965d7f6f361e59
12 changes: 6 additions & 6 deletions packages/client/scan/src/setupProxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,42 +5,42 @@ module.exports = function (app) {
.use(
'/api',
createProxyMiddleware({
target: 'https://ceramic-private-clay.3boxlabs.com',
target: 'https://gcp-ceramic-testnet-dev.s3.xyz',
changeOrigin: true,
})
)
.use(
'/streams',
createProxyMiddleware({
target: 'https://cscan.onrender.com/',
target: 'https://api-dev.s3.xyz/',
changeOrigin: true,
})
)
.use(
'/models',
createProxyMiddleware({
target: 'https://cscan.onrender.com/',
target: 'https://api-dev.s3.xyz/',
changeOrigin: true,
})
)
.use(
'/testnet',
createProxyMiddleware({
target: 'https://cscan.onrender.com/',
target: 'https://api-dev.s3.xyz/',
changeOrigin: true,
})
)
.use(
'/MAINNET',
createProxyMiddleware({
target: 'https://cscan.onrender.com/',
target: 'https://api-dev.s3.xyz/',
changeOrigin: true,
})
)
// .use(
// "/model",
// createProxyMiddleware({
// target: "https://ceramic-private-clay.3boxlabs.com",
// target: "https://gcp-ceramic-testnet-dev.s3.xyz",
// changeOrigin: true,
// })
// );
Expand Down

0 comments on commit 75a8d21

Please sign in to comment.