diff --git a/README.md b/README.md index 7875385..866b469 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Standard Go Project Layout -This is a basic layout for Go application projects. It's not an official standard defined by the core Go dev team; however, it is a set of common project layout patterns emerging in the Go ecosystem. Some of these patterns are more popular than others. It also has a number of small enhancements along with several supporting directories common to any large enough real world application. +This is a basic layout for Go application projects. It's not an official standard defined by the core Go dev team; however, it is a set of common historical and emerging project layout patterns in the Go ecosystem. Some of these patterns are more popular than others. It also has a number of small enhancements along with several supporting directories common to any large enough real world application. If you are trying to learn Go or if you are building a PoC or a toy project for yourself this project layout is an overkill. Start with something really simple (a single `main.go` file is more than enough). As your project grows keep in mind that it'll be important to make sure your code is well structured otherwise you'll end up with a messy code with lots of hidden dependencies and global state. When you have more people working on the project you'll need even more structure. That's when it's important to introduce a common way to manage packages/libraries. When you have an open source project or when you know other projects import the code from your project repository that's when it's important to have private (aka `internal`) packages and code. Clone the repository, keep what you need and delete everything else! Just because it's there it doesn't mean you have to use it all. None of these patterns are used in every single project. Even the `vendor` pattern is not unversal. diff --git a/pkg/README.md b/pkg/README.md index e0fff26..6cdc576 100644 --- a/pkg/README.md +++ b/pkg/README.md @@ -9,6 +9,7 @@ Note that this is not a universally accepted pattern and for every popular repo Examples: * https://github.com/prometheus/prometheus/tree/master/pkg +* https://github.com/jaegertracing/jaeger/tree/master/pkg * https://github.com/istio/istio/tree/master/pkg * https://github.com/google/gvisor/tree/master/pkg * https://github.com/google/syzkaller/tree/master/pkg @@ -17,11 +18,15 @@ Examples: * https://github.com/heptio/ark/tree/master/pkg * https://github.com/heptio/sonobuoy/tree/master/pkg * https://github.com/kubernetes/kubernetes/tree/master/pkg +* https://github.com/kubernetes/kops/tree/master/pkg * https://github.com/moby/moby/tree/master/pkg * https://github.com/grafana/grafana/tree/master/pkg * https://github.com/influxdata/influxdb/tree/master/pkg +* https://github.com/cockroachdb/cockroach/tree/master/pkg * https://github.com/coreos/etcd/tree/master/pkg * https://github.com/oklog/oklog/tree/master/pkg * https://github.com/flynn/flynn/tree/master/pkg * https://github.com/jesseduffield/lazygit/tree/master/pkg * https://github.com/gopasspw/gopass/tree/master/pkg +* https://github.com/sourcegraph/sourcegraph/tree/master/pkg +