Skip to content

Commit

Permalink
Update path to "/" instead of "./grails-forge-ui/"
Browse files Browse the repository at this point in the history
  • Loading branch information
puneetbehl committed Jul 26, 2023
1 parent eda80a0 commit ffd40dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/launch/src/helpers/Routing.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { parseQuery } from './url'

export const BASE_PATH = 'grails-forge-ui'
export const BASE_PATH = '/'
export const ACTIVITY_KEY = 'activity'
export const VERSION_KEY = 'version'
export const FEATURES_KEY = 'features'
Expand Down
2 changes: 1 addition & 1 deletion app/launch/src/micronaut/constants.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const VERSION_FEED_URL =
process.env.REACT_APP_VERSION_FEED ||
'https://grails.github.io/grails-forge-ui/grails-version-feed.json'
'https://start.grails.org/grails-version-feed.json'
4 changes: 2 additions & 2 deletions app/start/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Refresh" content="0; url=/grails-forge-ui/" />
<meta http-equiv="Refresh" content="0; url=/" />
</head>
<body>
<p>Please click <a href="/grails-forge-ui/">here</a> to get started with Grails!</p>
<p>Please click <a href="/">here</a> to get started with Grails!</p>
</body>
</html>
2 changes: 1 addition & 1 deletion dev-proxy-server/src/proxy-dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const axios = require("axios");
const VERSION_FEED_URL = "https://grails.github.io/grails-forge-ui/grails-version-feed.json";
const VERSION_FEED_URL = "https://start.grails.org/grails-version-feed.json";
const { startProxy, startVersionServer } = require("./commands");

/**
Expand Down

0 comments on commit ffd40dc

Please sign in to comment.