To get started in a new repository, follow these steps, and then visit one of the language-specific overview pages.
# Create `
pants.toml
`
Pants configuration lives in a file called `pants.toml
` in the root of the repo. This file uses the [TOML](🔗) format.
If you haven't yet, create a `pants.toml
` file:
where `$PANTS_VERSION
` is the version of Pants that you want to pin your repo to. When you'd like to upgrade Pants, edit `pants_version
` and the `./pants
` script will self-update on the next run.
# Configure source roots
Many languages organize code in a package hierarchy, so that the relative location of a source file on the filesystem corresponds to a logical package name. The directories that correspond to the roots of the language's package hierarchy are referred to as [source roots](🔗). These are the filesystem locations from which import paths are computed.
For example, if your Python code lives under `src/python
`, then `import myorg.myproject.app
` will import the code in `src/python/myorg/myproject/app.py
`.
In simple cases the root of the repository itself might be your only source root. But in many other cases the code is organized so that the source root is nested under some directory such as `src/
` or `src/<language name>
`.
To work correctly, Pants needs to know about the source roots in your repo. By default, given a source file path, Pants will treat the longest path prefix that ends in `src
`, `src/python
`, or `src/py
` as its source root, falling back to the repo root itself if no such prefix is found.
If your project has a different structure, see [Source roots](🔗) for how to configure them, and for examples of different project structures you can use Pants with.
Golang projects can skip this step
Golang projects already use `
go.mod
` to indicate source roots.
# Enable backends
Most Pants functionality is provided via pluggable [_backends_](🔗), which are activated by adding to the `[GLOBAL].backend_packages
` option like this:
See [here](🔗) for a list of available backends.
# Update `
.gitignore
`
If you use Git, we recommend adding these lines to your top-level `.gitignore
` file:
FYI: Pants will ignore all files in your `
.gitignore
` by defaultThe `
pants_ignore
` option tells Pants which files to avoid looking at, but it additionally ignores all `.gitignore
`d files by default. Occasionally, you will want to ignore something with Git, but still want Pants to work on the file. See [Troubleshooting / common issues](🔗) for how to do this.
# Generate BUILD files
Once you have enabled the backends for the language(s) you'd like to use, run [`./pants tailor ::
`](🔗) to generate an initial set of [BUILD](🔗) files.
[BUILD](🔗) files provide metadata about your code (the timeout of a test, any dependencies which cannot be inferred, etc). BUILD files are typically located in the same directory as the code they describe. Unlike many other systems, Pants BUILD files are usually very succinct, as most metadata is either inferred from static analysis, assumed from sensible defaults, or generated for you.
In general, you should create (and update) BUILD files by running `./pants tailor ::
`:
Often, this will be all you need for Pants to work, thanks to sensible defaults and inference, like [inferring your dependencies](🔗). Sometimes, though, you may need to or want to change certain fields, like setting a longer timeout on a test.
You may also need to add some targets that Pants cannot generate, like [`resources
` and `files
`](🔗) targets.
To ignore false positives, set `[tailor].ignore_paths
` and `[tailor].ignore_adding_targets
`. See [tailor](🔗) for more detail.
Run `
./pants tailor --check ::
` in CIWe recommend running `
./pants tailor --check ::
` in your [continuous integration](🔗) so that you don't forget to add any targets and BUILD files (which might mean that tests aren't run or code isn't validated).
# Visit a language specific overview
You're almost ready to go! Next up is visiting one of the language-specific overviews listed below.