Skip to content

Commit

Permalink
fix: small url fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee committed Oct 11, 2024
1 parent 40dbc54 commit 390450b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DEFAULT_GOAL:=help
.PHONY: help install clean update lint type-check test frontend serve applet docs-serve docs
.PHONY: help install clean update export lint type-check test frontend serve applet docs-serve docs

help: ## Display this help text for Makefile
@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)
Expand All @@ -15,6 +15,9 @@ clean: ## Remove generated project files
update: ## Update project dependencies
@uv sync --upgrade

export: ## Export project dependencies
@uv export --format requirements-txt > requirements.txt

lint: ## Lint and format codebase
-@uv run --no-sync ruff check --fix .
-@uv run ruff format
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"twitter_url": "https://twitter.com/_scriptr",
"youtube_url": "https://youtube.com/@monorepo",
"nav_links": [
{"title": "Dashboard", "url": ""},
{"title": "Dashboard", "url": "https://pysourcebuild.scriptr.dev/"},
{
"title": "Sponsor me",
"url": "https://github.com/sponsors/JacobCoffee",
Expand Down

0 comments on commit 390450b

Please sign in to comment.