Skip to content

Commit 390450b

Browse files
committed
fix: small url fix
1 parent 40dbc54 commit 390450b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DEFAULT_GOAL:=help
2-
.PHONY: help install clean update lint type-check test frontend serve applet docs-serve docs
2+
.PHONY: help install clean update export lint type-check test frontend serve applet docs-serve docs
33

44
help: ## Display this help text for Makefile
55
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
@@ -15,6 +15,9 @@ clean: ## Remove generated project files
1515
update: ## Update project dependencies
1616
@uv sync --upgrade
1717

18+
export: ## Export project dependencies
19+
@uv export --format requirements-txt > requirements.txt
20+
1821
lint: ## Lint and format codebase
1922
-@uv run --no-sync ruff check --fix .
2023
-@uv run ruff format

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"twitter_url": "https://twitter.com/_scriptr",
111111
"youtube_url": "https://youtube.com/@monorepo",
112112
"nav_links": [
113-
{"title": "Dashboard", "url": ""},
113+
{"title": "Dashboard", "url": "https://pysourcebuild.scriptr.dev/"},
114114
{
115115
"title": "Sponsor me",
116116
"url": "https://github.com/sponsors/JacobCoffee",

0 commit comments

Comments
 (0)