Skip to content

Commit

Permalink
feat: add beta env (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 authored Aug 20, 2024
1 parent 377601b commit 855ff4b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/api/env/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AKASHLYTICS_CORS_WEBSITE_URLS=https://cloudmos.io,https://www.cloudmos.io,http://debug.cloudmos.io,https://deploy.cloudmos.io,https://beta.cloudmos.io,https://stats.akash.network,https://console.akash.network,https://akash.network,https://akash.hooman.digital,http://localhost:3000,https://beta2.cloudmos.io,https://beta3.cloudmos.io,https://akashconsole.vercel.app
WebsiteUrl=https://cloudmos.io
AKASHLYTICS_CORS_WEBSITE_URLS=https://cloudmos.io,https://www.cloudmos.io,http://debug.cloudmos.io,https://deploy.cloudmos.io,https://beta.cloudmos.io,https://stats.akash.network,https://console.akash.network,https://akash.network,https://akash.hooman.digital,http://localhost:3000,https://beta2.cloudmos.io,https://beta3.cloudmos.io,https://akashconsole.vercel.app,https://console-beta.akash.network
WebsiteUrl=https://console-beta.akash.network
TRIAL_DEPLOYMENT_ALLOWANCE_AMOUNT=10000000
DEPLOYMENT_ALLOWANCE_REFILL_AMOUNT=10000000
DEPLOYMENT_ALLOWANCE_REFILL_THRESHOLD=1000000
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "console-api",
"version": "2.21.0",
"version": "2.21.1",
"description": "Api providing data to the deploy tool",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion apps/deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "akash-console",
"version": "2.11.2",
"version": "2.11.3",
"private": true,
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/deploy-web/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const productionMainnetApiUrl = "https://api.cloudmos.io";
const productionTestnetApiUrl = "https://api-testnet.cloudmos.io";
const productionSandboxApiUrl = "https://api-sandbox.cloudmos.io";
const productionStatsAppUrl = "https://stats.akash.network";
const productionHostnames = ["deploy.cloudmos.io", "console.akash.network", "staging-console.akash.network", "beta.cloudmos.io"];
const productionHostnames = ["deploy.cloudmos.io", "console.akash.network", "staging-console.akash.network", "beta.cloudmos.io", "console-beta.akash.network"];

export const isProd = process.env.NODE_ENV === "production";
export const isMaintenanceMode = process.env.MAINTENANCE_MODE === "true";
Expand Down
Empty file added apps/provider-proxy/env/.env
Empty file.
2 changes: 1 addition & 1 deletion apps/provider-proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "console-provider-proxy",
"version": "1.0.7",
"version": "1.0.8",
"description": "Proxy that allows communication between the Web UI and providers",
"license": "Apache-2.0",
"author": "Akash Network",
Expand Down
3 changes: 2 additions & 1 deletion apps/provider-proxy/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ const whitelist = [
"https://console.akash.network",
"https://beta.cloudmos.io",
"https://staging-console.akash.network",
"https://akashconsole.vercel.app"
"https://akashconsole.vercel.app",
"https://console-beta.akash.network"
];

app.use(
Expand Down

0 comments on commit 855ff4b

Please sign in to comment.