Skip to content

Commit

Permalink
Added settings.coffee to point to API location and fixed ../img relat…
Browse files Browse the repository at this point in the history
…ive HREFs in header.hbs to not include ..

Renamed hgibackend.conf to hgibackend.conf.tmpl since it needs to be configured locally.
Added .gitignore to ignore hgibaclend.conf
  • Loading branch information
jrandall committed Apr 18, 2013
1 parent b2432bf commit 2eecb48
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions go-backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hgibackend.conf
9 changes: 9 additions & 0 deletions go-backend/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
go-backend
==========


Running
-------

export GOPATH=$(echo ~/hgi-web/go-backend/go)
./hgi-web-backend-daemon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ mongo.connection=localhost:27017
mongo.database=hgibackend

http.server.host=localhost
http.server.port=4444
http.server.port=10000

swagger.home=/usr/local/swagger-ui-1.1.7
swagger.path=/api-docs/
Expand Down
3 changes: 3 additions & 0 deletions node-frontend/app/settings.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports =
projectRestUrl: "_api/projects"

2 changes: 1 addition & 1 deletion node-frontend/app/views/templates/header.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="home"><object width="60" height="30" title="HGI logo" data="../img/HGI-ltblue.svg" type="image/svg+xml"><img alt="HgI" src="../img/HGI-ltblue.60x30.png"/></object></a>
<a class="brand" href="home"><object width="60" height="30" title="HGI logo" data="img/HGI-ltblue.svg" type="image/svg+xml"><img alt="HgI" src="img/HGI-ltblue.60x30.png"/></object></a>
<div class="nav-collapse">
<ul class="nav">
{{#each items}}
Expand Down

0 comments on commit 2eecb48

Please sign in to comment.