Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions docs/get-started/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ npm install
```bash Python
cd hello-world

pipenv install --dev
uv sync
```

<Note>
We recommend using [Pipenv](https://pipenv.pypa.io/en/latest/) for dependency
management and virtual environments. It's included it in our python templates
by default. Installation instructions:
https://pipenv.pypa.io/en/latest/installation/#preferred-installation-of-pipenv
We use `uv` by default in our base py-starter template. If you would prefer to use another dependency manager we also have a template for `pipenv`.

If there are other dependency managers you would like to see supported, please let us know in out [github issues](github.com/nitrictech/nitric/issues).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
If there are other dependency managers you would like to see supported, please let us know in out [github issues](github.com/nitrictech/nitric/issues).
If there are other dependency managers you would like to see supported, please let us know in our [GitHub issues](github.com/nitrictech/nitric/issues).


</Note>

</TabItem>
Expand Down Expand Up @@ -189,10 +189,14 @@ Your project should now look like this:

```txt Python
+--services/
| +-- hello.py
+--Pipfile
+--Pipfile.lock
| +-- api.py
+--.env
+--pyproject.toml
+--.python-version
+--uv.lock
+--nitric.yaml
+--python.dockerfile
+--python.dockerfile.dockerignore
+--README.md
```

Expand Down
Loading