[Task:] Add Documentation
This commit is contained in:
parent
b6ade49a41
commit
773427b0cf
|
@ -8,7 +8,7 @@ go get ./...
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
||||||
\subsection{Start des Microservice}
|
\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]
|
\begin{lstlisting}[caption=Start des Go-Microservice]
|
||||||
go run main.go
|
go run main.go
|
||||||
\end{lstlisting}
|
\end{lstlisting}
|
||||||
|
|
|
@ -20,19 +20,17 @@
|
||||||
<table class="ui table list" ng-if="list.length > 0">
|
<table class="ui table list" ng-if="list.length > 0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>#</th>
|
<th>Status of Freshness</th>
|
||||||
<th>Location</th>
|
<th>Location</th>
|
||||||
<th>Comment</th>
|
<th>Comment</th>
|
||||||
<th>Status of Freshness</th>
|
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="item in list">
|
<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.position}}</td>
|
||||||
<td>{{item.comment}}</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>
|
<td><i class="trash icon" ng-click="delete(item.id)"></i></td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Reference in New Issue