Skip to content
Snippets Groups Projects
Commit f6e9f4d2 authored by Reiner Jung's avatar Reiner Jung
Browse files

added minor modifications

parent c7dc074a
No related branches found
No related tags found
No related merge requests found
......@@ -19,3 +19,12 @@ To start the server, run:
Please note that the Heroku deployment uses `jetty-runner` which does not provide Websocket support.
# Populate database with test data
Before you can start the service the first time, send a post request to
the backend to create an software system.
`curl -XPOST http://localhost:8080/v1/systems/createTest/CoCoME`
......@@ -205,7 +205,7 @@
<configuration>
<!--<jettyXml>${project.build.directory}/${project.build.finalName}-jetty.xml</jettyXml>-->
<httpConnector>
<port>8080</port>
<port>9090</port>
</httpConnector>
<scanIntervalSeconds>0</scanIntervalSeconds>
<webApp>
......
#!/bin/bash
export DATABASE_URL="postgresql://iobserve:iobserve-ui@localhost:5432/iobserve-ui"
if mvn compile ; then
mvn jetty:run
else
echo "Fail"
fi
# end
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment