-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
# DDD go | ||
Domain Driven Design written in Go | ||
|
||
# Installation | ||
|
||
Install GVM (Go Version Manager) on your machine using this guideline https://github.com/moovweb/gvm. | ||
|
||
``` | ||
gvm install go1.13.5 | ||
gvm use go1.13.5 | ||
mdkir $GOPATH/src | ||
git clone [email protected]:ekosalemba/ddd-go.git $GOPATH/src/ddd-go | ||
cd $GOPATH/src/ddd-go | ||
``` | ||
|
||
Install dependency Manager https://github.com/golang/dep. | ||
|
||
``` | ||
cd $GOPATH/src/ddd-go | ||
dep ensure | ||
``` | ||
|
||
|
||
# How to run | ||
1. copy file at presentation/config/config.json.sample and rename to rename to config.json | ||
2. move to presentation directory | ||
3. run command `go run main.go` | ||
3. run command `go run main.go` |