© P.J. McNerney 2020
P. McNerneyBeginning Bazelhttps://doi.org/10.1007/978-1-4842-5194-2_3

3. Your First Bazel Project

P. J. McNerney1 
(1)
Blackhawk, CO, USA
 

Now that you’ve downloaded and set up Bazel, the real fun begins. We’ll start with a small project just to get started and then build (no pun intended) from there.

By the end of this chapter, you will have your first Bazel project up and running and be able to build and test code.

Setting Up Your Workspace

Prior to adding any code, we establish a new Bazel project by creating a WORKSPACE file to a given directory.

Create a directory for your project and create an empty WORKSPACE file:
$ mkdir chapter_03 (or <name of your directory>)
$ cd chapter_03 (or <name of your directory>)
chapter_03$ touch WORKSPACE ...

Get Beginning Bazel: Building and Testing for Java, Go, and More now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.