1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

Remove module file for empty module. Update docs.

This commit is contained in:
David Fleming
2019-06-21 15:40:42 -04:00
parent a11a984122
commit cc057ee50c
2 changed files with 6 additions and 8 deletions

View File

@ -61,10 +61,13 @@ An AWS account is required for deployment for the following AWS dependencies:
### Getting the project
You can use the traditional `go get` command to download this project into your configured GOPATH.
Clone the repo into your desired location. This project uses Go modules and does not need to be in your GOPATH. You will need to be using Go >= 1.11.
You should now be able to compile the project locally.
```
$ go get -u gitlab.com/geeks-accelerator/oss/saas-starter-kit
cd example-project/
GO111MODULE=on go install ./...
```
@ -74,10 +77,8 @@ This project is using Go Module support for vendoring dependencies.
We are using the `tidy` command to maintain the dependencies and make sure the project can create reproducible builds.
This project assumes the source code will be inside your GOPATH within the traditional location.
```
cd $GOPATH/src/geeks-accelerator/oss/saas-starter-kit/example-project
cd example-project
GO111MODULE=on go mod tidy
```

3
go.mod
View File

@ -1,3 +0,0 @@
module gitlab.com/geeks-accelerator/oss/saas-starter-kit
go 1.12