Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
isochrone-vm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Institut für Informatik
dbis
dbis-isochrone
isochrone-vm
Commits
044b57f3
Commit
044b57f3
authored
9 years ago
by
User expired
Browse files
Options
Downloads
Patches
Plain Diff
activating database logging in testcase now (not globally anymore)
parent
79844a46
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+4
-5
4 additions, 5 deletions
CHANGELOG.md
Vagrantfile
+2
-1
2 additions, 1 deletion
Vagrantfile
with
6 additions
and
6 deletions
CHANGELOG.md
+
4
−
5
View file @
044b57f3
Upcoming version:
Upcoming version:
-----------------
-----------------
-
activating database logging in testcase now (not globally anymore) (Nikolaus Krismer)
-
updating gradle scmversion plugin (Nikolaus Krismer)
-
updating gradle scmversion plugin (Nikolaus Krismer)
-
added contribution guidelines (Nikolaus Krismer)
-
added contribution guidelines (Nikolaus Krismer)
-
moving gradle changelog tasks to separate buildscript (Nikolaus Krismer)
-
moving gradle changelog tasks to separate buildscript (Nikolaus Krismer)
Version v0.5.1:
---------------
-
fixing problems in changelog generation (again) (Nikolaus Krismer)
-
fixing problems in changelog generation (again) (Nikolaus Krismer)
-
Merge branch 'master' of git@dbis-git.uibk.ac.at:krismer/isochrone-vm.git (Nikolaus Krismer)
-
calling grgit add before grgit commit (by now push is empty) (Nikolaus Krismer)
-
calling grgit add before grgit commit (by now push is empty) (Nikolaus Krismer)
-
not commiting changelogs in jenkins without changes :-) (Nikolaus Krismer)
-
not commiting changelogs in jenkins without changes :-) (Nikolaus Krismer)
-
improving gradle changelog mechanism (excluding jenkins commits) (Nikolaus Krismer)
-
improving gradle changelog mechanism (excluding jenkins commits) (Nikolaus Krismer)
...
@@ -18,6 +15,9 @@ Version v0.5.1:
...
@@ -18,6 +15,9 @@ Version v0.5.1:
-
fixing problems with gradle's clean task (Nikolaus Krismer)
-
fixing problems with gradle's clean task (Nikolaus Krismer)
-
fixing invalid clean task definition (Nikolaus Krismer)
-
fixing invalid clean task definition (Nikolaus Krismer)
-
adding removal of CHANGELOG to clean task (Nikolaus Krismer)
-
adding removal of CHANGELOG to clean task (Nikolaus Krismer)
Version v0.5.1:
---------------
-
removed hard-coded version from gradle (is set using scmversion plugin) (Nikolaus Krismer)
-
removed hard-coded version from gradle (is set using scmversion plugin) (Nikolaus Krismer)
-
added density generation for synthethic networks (Nikolaus Krismer)
-
added density generation for synthethic networks (Nikolaus Krismer)
-
removed pgRouting / osm2pgrouting from files (not needed and never used) (Nikolaus Krismer)
-
removed pgRouting / osm2pgrouting from files (not needed and never used) (Nikolaus Krismer)
...
@@ -42,7 +42,6 @@ Version v0.5.0:
...
@@ -42,7 +42,6 @@ Version v0.5.0:
-
geoserver version update (Nikolaus Krismer)
-
geoserver version update (Nikolaus Krismer)
-
always adding pg_procedures to created database (not only when postgis is installed) (Nikolaus Krismer)
-
always adding pg_procedures to created database (not only when postgis is installed) (Nikolaus Krismer)
-
added installation of phpLiteAdmin and spatialite (Nikolaus Krismer)
-
added installation of phpLiteAdmin and spatialite (Nikolaus Krismer)
-
Merge branch 'master' of git@dbis-git.uibk.ac.at:krismer/isochrone-vm.git (Nikolaus Krismer)
-
source profile in init script so it works without problems in centos 6 with the service command (Nikolaus Krismer)
-
source profile in init script so it works without problems in centos 6 with the service command (Nikolaus Krismer)
-
Fixed tomcat startup message (root)
-
Fixed tomcat startup message (root)
-
creating directories needed by script at the beginning (Nikolaus Krismer)
-
creating directories needed by script at the beginning (Nikolaus Krismer)
...
...
This diff is collapsed.
Click to expand it.
Vagrantfile
+
2
−
1
View file @
044b57f3
...
@@ -66,7 +66,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
...
@@ -66,7 +66,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/prepareEnvironment.sh"
,
args:
[
"secretPhdPassword#2014!"
,
(
isLocalMode
?
"true"
:
"false"
)]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/prepareEnvironment.sh"
,
args:
[
"secretPhdPassword#2014!"
,
(
isLocalMode
?
"true"
:
"false"
)]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/createDatabase.sh"
,
args:
[
"niko"
,
"secretPhdPassword#2014!"
]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/createDatabase.sh"
,
args:
[
"niko"
,
"secretPhdPassword#2014!"
]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/importData.sh"
,
args:
[
"niko"
,
"secretPhdPassword#2014!"
,
(
isLocalMode
?
"true"
:
"false"
)]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/importData.sh"
,
args:
[
"niko"
,
"secretPhdPassword#2014!"
,
(
isLocalMode
?
"true"
:
"false"
)]
config
.
vm
.
provision
"shell"
,
path:
"bootstrap/activateDatabaseLogging.sh"
# Optionally activate database logging (for queryTimeLogging this is done in the testcase itself now)
#config.vm.provision "shell", path: "bootstrap/activateDatabaseLogging.sh"
# Network configuration
# Network configuration
config
.
vm
.
network
:forwarded_port
,
guest:
5432
,
host:
5432
,
id:
"postgresql"
,
auto_correct:
false
config
.
vm
.
network
:forwarded_port
,
guest:
5432
,
host:
5432
,
id:
"postgresql"
,
auto_correct:
false
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment