소스 검색

Readme update

Luis Figueiredo 8 년 전
부모
커밋
5c87837da0
1개의 변경된 파일22개의 추가작업 그리고 10개의 파일을 삭제
  1. 22 10
      README.md

+ 22 - 10
README.md

@@ -7,11 +7,32 @@ Sample app
 * Mongodb (tested on 3.4.2+)
 
 ## Building
+
+fetching   
 ```
 git clone http://dev.hexasoftware.com/stdio/sampleapp.git
-cd sampleapp
+```
+
+building   
+```
 make
 ```
+or
+```
+make local
+```
+
+
+Creating a release container 'sampleapp'
+```
+make dist
+```
+
+running 
+```
+docker run --name mysampleappcontainer sampleapp
+```
+
 
 
 
@@ -45,13 +66,4 @@ customersvc logic is separated from the 'webapp' mostly because I tend to separa
             └── utils.go
 ```
 
-Depending on situation I often create go-getable packages    
 
-Sometimes a project is small enough to fit both backend/frontend in it
-```
-Project 
-   + Backend  : GOPATH
-      +src
-   + Frontend
-      + Web
-```