Skip to content
Snippets Groups Projects
Commit c859901d authored by Mike Lynch's avatar Mike Lynch
Browse files

Authentication works

parent 21cd4a68
Branches
No related merge requests found
......@@ -5,7 +5,7 @@ This is the code of a single page application for searching with SOLR
### Install
```bash
npm intstall
npm install
```
### Development
......
{
"repo": "http://localhost:8080/grants/",
"repo": "http://localhost:8089/grants/",
"core": "grants",
"api": "/solr/grants",
"dev": {
"proxy": {
"/solr": {
"target": "http://localhost:8080/",
"target": "http://localhost:8089/",
"secure": false
}
}
......
......@@ -18,11 +18,6 @@ const Header = function (data) {
href="${data.header.helpURL}" target="_blank noreferer">
${data.header.help}<i class="fa fa-question-circle" aria-hidden="true"></i></a>
</div>
<div class="navbar-nav">
<a class="nav-item nav-link"
href="${data.header.portalURL}" target="_blank noreferer">
${data.header.portal}<i class="fa fa-external-link" aria-hidden="true"></i></a>
</div>
</nav>
</div>
</div>
......
......@@ -16,8 +16,6 @@ let state = {
logo: 'images/logo.svg',
help: 'Help',
helpURL: '',
portal: 'Back to Stash',
portalURL: 'http://stash.research.uts.edu.au',
menu: [
{id: 'back', name: 'Back'}
]
......@@ -47,7 +45,7 @@ let state = {
fieldName: "Application",
width: "1000",
height: "400",
baseUrl: "http://localhost:8080/grants"
baseUrl: "http://localhost:8089/grants"
}
]
},
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment