https://github.com/siddhant-k-code/example-pants
A sample repository demonstrating the usage of the Pants build system
https://github.com/siddhant-k-code/example-pants
pants pants-build pants-plugins pantsbuild
Last synced: 5 months ago
JSON representation
A sample repository demonstrating the usage of the Pants build system
- Host: GitHub
- URL: https://github.com/siddhant-k-code/example-pants
- Owner: Siddhant-K-code
- Created: 2024-11-17T09:32:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-17T09:33:58.000Z (over 1 year ago)
- Last Synced: 2025-03-16T14:52:39.502Z (over 1 year ago)
- Topics: pants, pants-build, pants-plugins, pantsbuild
- Language: Dockerfile
- Homepage: https://dev.to/siddhantkcode/building-smarter-docker-images-for-your-development-environments-with-pants-51al
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# example-pants
A sample repository demonstrating the usage of the [Pants](https://www.pantsbuild.org/) build system.
## Repository structure
```sh
.
├── example-go-project
│ ├── app
│ │ ├── backend
│ │ └── frontend
│ └── docker
│ ├── backend
│ │ ├── api
│ │ │ ├── BUILD
│ │ │ ├── Dockerfile
│ │ │ └── extensions.json
│ │ └── batch
│ │ ├── BUILD
│ │ ├── Dockerfile
│ │ └── extensions.json
│ ├── common
│ │ ├── mise
│ │ │ ├── BUILD
│ │ │ └── Dockerfile
│ │ ├── rust
│ │ │ ├── BUILD
│ │ │ └── Dockerfile
│ │ └── ubuntu
│ │ ├── BUILD
│ │ ├── Dockerfile
│ │ └── Tiltfile
│ └── frontend
│ └── vite
│ ├── BUILD
│ ├── Dockerfile
│ └── extensions.json
├── example-svelte-project
│ ├── app
│ │ ├── backend
│ │ └── frontend
│ └── docker
│ ├── backend
│ │ ├── api
│ │ │ ├── BUILD
│ │ │ ├── Dockerfile
│ │ │ └── extensions.json
│ │ └── batch
│ │ ├── BUILD
│ │ ├── Dockerfile
│ │ └── extensions.json
│ ├── common
│ │ ├── mise
│ │ │ ├── BUILD
│ │ │ └── Dockerfile
│ │ └── ubuntu
│ │ ├── BUILD
│ │ └── Dockerfile
│ └── frontend
│ └── vite
│ ├── BUILD
│ ├── Dockerfile
│ └── extensions.json
├── pants
└── pants.toml
```
## Install
Install pants by running:
```bash
curl --proto '=https' --tlsv1.2 -fsSL https://static.pantsbuild.org/setup/get-pants.sh | bash
```