Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: FastAPI Paginate
site_author: Nazmul Hasan
site_description: FastAPI Pagination
site_description: FastAPI pagination with next, prev, first, last links while keeping the request params
copyright: "Copyright © 2022 Nazmul Hasan"
repo_url: https://github.com/nazmulnnb/fastapi-paginate
repo_name: nazmulnnb/fastapi-paginate
Expand Down
6 changes: 6 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% extends "index.html" %}

{% block extrahead %}
<meta property="robots" content="index, follow"/>
<meta name="google-site-verification" content="KlfEUhMff2gprkewxvAO6cIkwnS-2ZmRxSkzbEQU3sI"/>
{% endblock %}
9 changes: 4 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ asyncpg = { version = ">=0.24.0", optional = true }
ormar = { version = ">=0.10.5", optional = true}
piccolo = { version = ">=0.29,<0.35", optional = true}
motor = { version = "^2.5.1", optional = true }
django = { version = "^3.1.0", optional = true }
django = { version = "^3.2.13", optional = true }

# sqlmodel = { version = "^0.0.4", optional = true} Should be uncommented when gino will support sqlalchemy 1.4
mongoengine = {version = ">=0.23.1,<0.25.0", optional = true}
Expand Down