Skip to content

Commit c5886c5

Browse files
committed
docs: updates repo to agon-python
1 parent ca3cbf2 commit c5886c5

11 files changed

Lines changed: 419 additions & 98 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Questions & Discussions
4-
url: https://github.com/Verdenroz/agon/discussions
4+
url: https://github.com/Verdenroz/agon-python/discussions
55
about: Ask questions and discuss ideas in GitHub Discussions
66
- name: Documentation
7-
url: https://github.com/Verdenroz/agon#readme
7+
url: https://github.com/Verdenroz/agon-python#readme
88
about: Check the documentation for usage examples

Makefile

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
.DEFAULT_GOAL := default
55

6-
.PHONY: default install fix test test-unit nox nox-unit upgrade build clean help
6+
.PHONY: default install fix test nox upgrade build docs clean pre-commit help
77

88
default: install fix test
99

@@ -13,27 +13,22 @@ install:
1313
fix:
1414
uv run python devtools/lint.py
1515

16-
test: test-unit
17-
@echo "✅ All tests passed"
18-
19-
test-unit: install
16+
test: install
2017
uv run pytest tests -s
18+
@echo "✅ All tests passed"
2119

2220
nox:
2321
uv run nox
2422

25-
nox-unit:
26-
uv run nox -s unit
27-
28-
nox-lint:
29-
uv run nox -s lint
30-
3123
upgrade:
3224
uv sync --upgrade --dev
3325

3426
build:
3527
uv build
3628

29+
docs: install
30+
uv run mkdocs serve
31+
3732
clean:
3833
-rm -rf dist/
3934
-rm -rf *.egg-info/
@@ -76,3 +71,6 @@ help:
7671
@echo ""
7772
@echo "🔧 Build:"
7873
@echo " make build - Build distribution packages"
74+
@echo ""
75+
@echo "📚 Docs:"
76+
@echo " make docs - Serve docs locally (http://127.0.0.1:8000/)"

0 commit comments

Comments
 (0)