Skip to content

Commit

Permalink
Set db on development mode
Browse files Browse the repository at this point in the history
  • Loading branch information
luanne committed Feb 2, 2014
1 parent 39fd421 commit 9db3c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grails-app/conf/DataSource.groovy
Expand Up @@ -3,7 +3,7 @@ environments {
grails {
neo4j {
type = "rest"
location = "http://localhost:7474/db/data/"
location = System.env['GRAPHENEDB_URL'] ?: "http://localhost:7474/db/data/"
}
}
}
Expand All @@ -19,7 +19,7 @@ environments {
grails {
neo4j {
type = "rest"
location = "dummy"
location = System.env['GRAPHENEDB_URL'] ?: "http://localhost:7474/db/data/"
}
}
}
Expand Down

0 comments on commit 9db3c67

Please sign in to comment.