Skip to content

Commit 9e11c7b

Browse files
committed
Changed base URL to neodash.graphapp.io
1 parent 0ce0f01 commit 9e11c7b

File tree

7 files changed

+7
-9
lines changed

7 files changed

+7
-9
lines changed

.env.hosted

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
PUBLIC_URL=https://nielsdejong.nl/neodash
1+
PUBLIC_URL=https://neodash.graphapp.io

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ⚡ NeoDash - Neo4j Dashboard Builder
22
NeoDash is a lightweight web app to create Neo4j dashboards.
3-
Writing Cypher is all that's required to build your first dashboard in minutes. Want to give NeoDash a spin right away? Try it here: https://nielsdejong.nl/neodash/.
3+
Writing Cypher is all that's required to build your first dashboard in minutes. Want to give NeoDash a spin right away? Try it [online](https://neodash.graphapp.io/).
44

55
You can also install NeoDash on Neo4j Desktop from the [Graph App Gallery](https://install.graphapp.io/).
66

doc/developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ NeoDash will automatically connect to your active database.
2222

2323
![Graph App Gallery](./img/graphapp.png)
2424
#### 2. Online
25-
The latest version of NeoDash will always be available at https://nielsdejong.nl/neodash.
25+
The latest version of NeoDash will always be available at https://neodash.graphapp.io.
2626
Your database credentials will only be cached in your browser.
2727

2828
#### 3. As a web app in your own hosted environment

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "neodash",
33
"description": "NeoDash - Neo4j Dashboard Builder",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"homepage": "./",
66
"neo4jDesktop": {
77
"apiVersion": "^1.2.0"

src/NeoDash.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,7 @@ class NeoDash extends React.Component {
169169
if (!(url.startsWith("bolt://") || url.startsWith("bolt+routing://") || url.startsWith("neo4j://"))) {
170170
url = "neo4j://" + url;
171171
}
172-
let config = {
173-
encrypted: (this.connection.encryption === "on") ? 'ENCRYPTION_ON' : 'ENCRYPTION_OFF'
174-
};
172+
let config = (this.connection.encryption === "on")? {encrypted: 'ENCRYPTION_ON'} : {}
175173

176174
var driver = neo4j.driver(
177175
url,

src/component/NeoShareModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import NeoTextInput from "./NeoTextInput";
1414
* The content of the modal is a large multi-line textbox for specifying a dashboard file as JSON.
1515
*/
1616
class NeoShareModal extends NeoModal {
17-
baseURL = "https://nielsdejong.nl/neodash/";
17+
baseURL = "https://neodash.graphapp.io/";
1818

1919
constructor(props) {
2020
super(props);

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Footer from "react-materialize/lib/Footer";
44
import NeoDash from "./NeoDash";
55

66
// Configurable text for the interface
7-
const version = "1.1.1"
7+
const version = "1.1.2"
88
const readme = "https://github.com/nielsdejong/neodash/blob/master/README.md";
99
const appName = "NeoDash";
1010
const title = "NeoDash - Neo4j Dashboard Builder";

0 commit comments

Comments
 (0)