File tree 1 file changed +19
-1
lines changed
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -218,9 +218,27 @@ Finally, remove the `src` boilerplate code that was added by uv in the first ste
218
218
rm -r src
219
219
```
220
220
221
+
221
222
### Pantsbuild (aka Pants)
222
223
Have a look in the Pants-specific [ example repository] ( examples.md ) for details on the setup.
223
224
You will find examples of combining Pants with Polylith, by using the Hatch build backend in the project-specific configurations.
224
225
225
226
226
- You will find more documentation about the available commands in the [ commands] ( commands.md ) section.
227
+ ## Next steps
228
+ You now have the repo structured as a Polylith Workspace. Great!
229
+ Add Python code to the Workspace by creating _ bases_ and _ components_ .
230
+ The common name is _ bricks_ (like LEGO bricks).
231
+ There's more about the Workspace and the bricks in the [ Polylith Workspace] ( workspace.md ) section.
232
+
233
+ The Polylith tool includes commands to create _ bases_ and _ components_ .
234
+ You will find documentation about commands in the [ Commands] ( commands.md ) section.
235
+
236
+ Example (using uv):
237
+
238
+ ``` shell
239
+ # create a base
240
+ uv run poly create base --name my_base
241
+
242
+ # create a component
243
+ uv run poly create component --name my_component
244
+ ```
You can’t perform that action at this time.
0 commit comments