genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0

[Task:] Add Documentation

This commit is contained in:
mlabusch 2017-05-19 09:20:50 +02:00
parent b6ade49a41
commit 773427b0cf
2 changed files with 4 additions and 6 deletions

View File

@ -8,7 +8,7 @@ go get ./...
\end{lstlisting}
\subsection{Start des Microservice}
Um den Microservice Warenwirtschaft zu starten, muss die folgende Befehlszeile unter dem Root-Verzeichnis des Microservice ausgeführt werden. Anschließend wird der Microservice unter \texttt{http://localhost:65000/} bereitgestellt.
Um den Microservice Warenwirtschaft zu starten, muss die folgende Befehlszeile unter dem Root-Verzeichnis des Microservice ausgeführt werden. Anschließend wird der Microservice unter \texttt{http://localhost:8080/} bereitgestellt.
\begin{lstlisting}[caption=Start des Go-Microservice]
go run main.go
\end{lstlisting}

View File

@ -20,19 +20,17 @@
<table class="ui table list" ng-if="list.length > 0">
<thead>
<tr>
<th>#</th>
<th>Status of Freshness</th>
<th>Location</th>
<th>Comment</th>
<th>Status of Freshness</th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in list">
<td>{{item.id}}</td>
<td><img class="icon" ng-src="{{'/api/good/freshness/'+item.id| reloadSrc}}"/></td>
<td>{{item.position}}</td>
<td>{{item.comment}}</td>
<td valign="middle"><img class="icon" ng-src="{{'/api/good/freshness/'+item.id| reloadSrc}}"/></td>
<td><i class="trash icon" ng-click="delete(item.id)"></i></td>
</tr>
</tbody>