Copyright 2018, 2019, Ardan Labs
[email protected]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
This starter kit is a starting point for building production grade scalable web service applications. The goal of this project is to provide a proven starting point for new projects that reduce the repetitive tasks in getting a new project launched to production. It uses minimal dependencies, implements idiomatic code and follows Go best practices. Collectively, the project lays out everything logically to minimize guess work and enable engineers to quickly maintain a mental model for the project. This inturn will make current developers happy and expedite on-boarding of new engineers.
This project should not be considered a web framework. Coding is a discovery process and with that, this project leaves you in control of your project’s architecture and development. There are five areas of expertise that an engineer or their engineering team must do for a project to grow and scale. Based on our experience, a few core decisions were made for each of these areas that help you focus initially on writing the business logic.
- Micro level - Since business applications require data storage this project implements Postgres. The implementation facilitates the data semantics that define the data being captured and their relationships.
- Macro level - The project architecture and design provides basic project structure and foundation for development.
- Business logic - Defines an example Go packages that helps illustrate where value generating activities should reside and how the code will be delivered to clients.
- Deployment and Operations - Integrates with CircleCI and GCP/GKE for serverless deployments.
- Observability - Implements OpenCensus and Go standard library support to facilitate observability.
This project contains the following features:
- Minimal web application using standard html/template package.
- Middleware integration.
- Database support using Postgres.
- CRUD based pattern.
- Role-based access control (RBAC).
- Account signup and user management.
- Distributed logging and tracing.
- Integration with Opencensus for enterprise-level observability.
- Testing patterns.
- Use of Docker, Docker Compose, and Makefiles.
- Vendoring dependencies with Modules, requires Go 1.12 or higher.
- Continuous deployment pipeline.
- Serverless deployments.
- CLI with boilerplate templates to reduce repetitive copy/pasting.
- Integration with CircleCI for enterprise-level CI/CD.
This project contains three services and uses 3rd party services such as MongoDB and Zipkin. Docker is required to run this software on your local machine.
You can use the traditional go get
command to download this project into your configured GOPATH.
$ GO111MODULE=off go get -u gitHub.com/ardanlabs/service
This project is using Go Module support for vendoring dependencies. We are using the tidy
and vendor
commands 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/github.com/ardanlabs/service
$ GO111MODULE=off go mod tidy
$ GO111MODULE=off go mod vendor
Docker is a critical component to managing and running this project. It kills me to just send you to the Docker installation page but it's all I got for now.
https://docs.docker.com/install/
If you are having problems installing docker reach out or jump on Gopher Slack for help.
All the source code, including any dependencies, have been vendored into the project. There is a single dockerfile
and a docker-compose
file that knows how to build and run all the services.
A makefile
has also been provide to make building, running and testing the software easier.
Navigate to the root of the project and use the makefile
to build all of the services.
$ cd $GOPATH/src/github.com/ardanlabs/service
$ make all
Navigate to the root of the project and use the makefile
to run all of the services.
$ cd $GOPATH/src/github.com/ardanlabs/service
$ make up
The make up
command will leverage Docker Compose to run all the services, including the 3rd party services. The first time to run this command, Docker will download the required images for the 3rd party services.
Default configuration is set which should be valid for most systems. Use the docker-compose.yaml
file to configure the services differently is necessary. Email me if you have issues or questions.
You can hit C in the terminal window running make up
. Once that shutdown sequence is complete, it is important to run the make down
command.
$ <ctrl>C
$ make down
Running make down
will properly stop and terminate the Docker Compose session.
The service provides record keeping for someone running a multi-family garage sale. Authenticated users can maintain a list of products for sale.
To do anything the database needs to be defined and seeded with data. This will also create the initial user.
$ make seed
This will create a user with email [email protected]
and password gophers
.
Before any authenticated requests can be sent you must acquire an auth token. Make a request using HTTP Basic auth with your email and password to get the token.
$ curl --user "[email protected]:gophers" http://localhost:3000/v1/users/token
I suggest putting the resulting token in an environment variable like $TOKEN
.
$ export TOKEN="COPY TOKEN STRING FROM LAST CALL"
To make authenticated requests put the token in the Authorization
header with the Bearer
prefix.
$ curl -H "Authorization: Bearer ${TOKEN}" http://localhost:3000/v1/users
We are in the process of writing more documentation about this code. Classes are being finalized as part of the Ultimate series.