Explorar el Código

Readme update

Luis Figueiredo hace 8 años
padre
commit
5c87837da0
Se han modificado 1 ficheros con 22 adiciones y 10 borrados
  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
-```