[Task:] Add Documentation
This commit is contained in:
parent
b6ade49a41
commit
773427b0cf
|
@ -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}
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in New Issue