Skip to content

Commit 2004c0d

Browse files
committed
Fix docs URL (#916)
1 parent abdaa04 commit 2004c0d

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Main features include:
3939

4040
---
4141

42-
**Documentation**: [https://aminalaee.dev/sqladmin](https://aminalaee.dev/sqladmin)
42+
**Documentation**: [https://aminalaee.github.io/sqladmin](https://aminalaee.github.io/sqladmin)
4343

4444
**Source Code**: [https://github.com/aminalaee/sqladmin](https://github.com/aminalaee/sqladmin)
4545

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Main features include:
3939

4040
---
4141

42-
**Documentation**: [https://aminalaee.dev/sqladmin](https://aminalaee.dev/sqladmin)
42+
**Documentation**: [https://aminalaee.github.io/sqladmin](https://aminalaee.github.io/sqladmin)
4343

4444
**Source Code**: [https://github.com/aminalaee/sqladmin](https://github.com/aminalaee/sqladmin)
4545

docs/model_convertors.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
Model Converters are special classes used to convert SQLAlchemy model properties into web interface form fields. They allow you to customize how backend SQLAlchemy models are represented in the admin interface, providing flexibility in handling different data types and validation rules.
66

7-
This page will guide you through the basics of using and customizing Model Converters. For advanced usage, refer to the [API Reference](./api_reference/model_converter.md).
8-
97
---
108

119
## Overview

docs/working_with_files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ and displayed in the admin dashboard.
5757

5858
You can replace `FileSystemStorage` with `S3Storage` to upload to S3 or any S3-compatible API.
5959

60-
For complete features and API reference of the `fastapi-storages` you can visit the docs at [https://aminalaee.dev/fastapi-storages](https://aminalaee.dev/fastapi-storages).
60+
For complete features and API reference of the `fastapi-storages` you can visit the docs at [https://aminalaee.github.io/fastapi-storages](https://aminalaee.github.io/fastapi-storages).

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site_name: SQLAlchemy Admin
22
site_description: Flexible admin dashboard for SQLAlchemy.
3-
site_url: https://aminalaee.dev/sqladmin
3+
site_url: https://aminalaee.github.io/sqladmin/
44

55
theme:
66
name: "material"

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ full = [
4141
]
4242

4343
[project.urls]
44-
Documentation = "https://aminalaee.dev/sqladmin"
44+
Documentation = "https://aminalaee.github.io/sqladmin/"
4545
Issues = "https://github.com/aminalaee/sqladmin/issues"
4646
Source = "https://github.com/aminalaee/sqladmin"
4747

@@ -93,9 +93,9 @@ dependencies = [
9393

9494
[tool.hatch.envs.docs]
9595
dependencies = [
96-
"mkdocs-material==9.1.3",
97-
"mkdocs==1.4.2",
98-
"mkdocstrings[python]==0.25.0",
96+
"mkdocs-material==9.6.14",
97+
"mkdocs==1.6.1",
98+
"mkdocstrings[python]==0.26.1",
9999
]
100100

101101
[tool.hatch.envs.test.scripts]

0 commit comments

Comments
 (0)