Skip to content

Commit 7fa621a

Browse files
committed
chore: release
1 parent 9abdfc5 commit 7fa621a

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ license = "MIT"
1616
name = "litestar-start"
1717
readme = "README.md"
1818
requires-python = ">=3.13"
19-
version = "0.1.0a9"
19+
version = "0.1.0a10"
2020

2121
[project.scripts]
2222
litestar-start = "src.cli:main"

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Litestar Start - Interactive CLI to scaffold Litestar projects."""
22

3-
__version__ = "0.1.0a9"
3+
__version__ = "0.1.0a10"
44
__all__ = ["__version__"]

src/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ def run_post_generation_setup(config: ProjectConfig, output_dir: Path) -> None:
194194
# Install dependencies with uv
195195
with console.status("[bold green]Installing dependencies with uv sync..."):
196196
subprocess.run(["uv", "sync"], cwd=output_dir, check=True, capture_output=True) # noqa: S607
197-
subprocess.run(["source", ".venv/bin/activate"], cwd=output_dir, check=True, capture_output=True) # noqa: S607
198197
console.print("[bold green]✓[/bold green] Dependencies installed")
199198

200199
# Start docker infrastructure if needed
@@ -216,7 +215,7 @@ def run_post_generation_setup(config: ProjectConfig, output_dir: Path) -> None:
216215
).ask()
217216

218217
if start_app:
219-
subprocess.run(["litestar", "run", "--reload"], cwd=output_dir, check=True) # noqa: S607
218+
subprocess.run(["uv", "run", "litestar", "run", "--reload"], cwd=output_dir, check=True) # noqa: S607
220219
else:
221220
console.print()
222221
console.print("[bold]To start your application:[/bold]")

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)