Skip to content

Commit 1141dbc

Browse files
committed
Updates
1 parent 1934cc5 commit 1141dbc

4 files changed

+18
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@ Python project setup using a [Devcontainer](https://containers.dev) and [uv](htt
1717
1. **Clone this repo**
1818

1919
<img src="docs/Screenshot 2025-04-23 at 17.19.10.png" alt="Clone repository" width="400"/>
20+
21+
Open the repo in VSCode.
22+
2023
2. **Reopen in Container**
2124

2225
Click the button in the popup upon opening the repo:
23-
24-
![alt text](<docs/Screenshot 2025-04-23 at 17.20.22.png>)
26+
27+
<img src="docs/Screenshot 2025-04-24 at 11.59.28.png" alt="Dev Containers: Reopen in Container" width="400"/>
2528

2629
Alternatively, enter <kbd>Ctrl+Shift+P</kbd> and select **Dev Containers: Reopen in Container**.
2730

@@ -59,19 +62,25 @@ Python project setup using a [Devcontainer](https://containers.dev) and [uv](htt
5962

6063
<img src="docs/Screenshot 2025-04-23 at 18.03.49.png" width="500"/>
6164

62-
all readily available ✓.
65+
all readily available ✓
66+
67+
🎉
68+
69+
Good luck developing! 🍀
70+
71+
## Extras
6372

6473
- **CI/CD with GitHub Actions**
6574

6675
[A workflow](https://github.com/dunnkers/python-uv-devcontainer/blob/main/.github/workflows/python_app.yaml) is already set up for you.
6776

6877
![alt text](<docs/Screenshot 2025-04-23 at 18.06.47.png>)
6978

70-
The workflow sets up your project with `uv` and runs `pytest` and `ruff`.
79+
This workflow runs tests using `pytest` and formatting + linting using `ruff`. Dependencies are set up with `uv`.
7180

72-
🎉
81+
- **Dockerfile**
7382

74-
Good luck developing! 🍀
83+
A [Dockerfile](https://github.com/dunnkers/python-uv-devcontainer/blob/main/Dockerfile) is provided for easy deployment. This Dockerfile uses the same base image as the Devcontainer, so you can be sure it will work in production.
7584

7685

7786
## About
-676 KB
Binary file not shown.
74.6 KB
Loading

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@ dependencies = []
1010
dev = [
1111
"pytest>=8.3.5",
1212
]
13+
14+
[tool.uv]
15+
package = true

0 commit comments

Comments
 (0)