# Projection Easily scaffold new projects from custom templates ## Usage Any directory under `/projection` will automatically be interpreted as a template. ```txt / └── projection/ ├── template1 ├── template2 └── ... ``` ### Initialising a template To initialise a template in your current directory, run `pj create `. Optionally, you can specify a destination folder: `pj create [DESTINATION]` ### Listing available templates You can list all detected templates via the `pj list` command. ```txt ├── template1 ├── template2 └── test_template ```