Skip to content

PxyUp/go_monorepo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go-monorepo with Bazel

Hello every this is real-life example of monorepository with Bazel and go-modules

Setup

  1. Install Bazel - https://docs.bazel.build/versions/master/install.html
  2. Install Go Modules
go mod download

Build

All applications inside packages folder:

  1. Main App
  2. Second app

Main App

Build:

bazel build //packages/main_app:main_app

Bin will be here:

bazel-bin/packages/main_app/darwin_amd64_stripped/main_app

Test:

bazel test //packages/main_app/...:all

Second App

Build:

bazel build //packages/second_app:second_app

Bin will be here:

bazel-bin/packages/second_app/darwin_amd64_stripped/second_app

Test:

bazel test //packages/second_app/...:all

All application

Test:

bazel test //packages/...:all