Skip to content

Commit 1220557

Browse files
committed
Updated README & docs
1 parent 140065e commit 1220557

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**SQL-focused Python ORM**
44

5-
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/hyperflask/sqlorm/python.yml?branch=main) ![Codecov](https://img.shields.io/codecov/c/github/hyperflask/sqlorm)
5+
![Pypi](https://img.shields.io/pypi/v/sqlorm-py) ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/hyperflask/sqlorm/python.yml?branch=main) ![Codecov](https://img.shields.io/codecov/c/github/hyperflask/sqlorm)
66

77
ORMs and developers often end up in a love/hate relationship. The advantages of ORMs (the mapping of objects) can be negated by their compromises (have to learn their pseudo sql syntax, less control over the generated sql, low performance).
88

mkdocs.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
site_name: sqlorm
22
repo_url: https://github.com/hyperflask/sqlorm
3+
repo_name: hyperflask/sqlorm
34
edit_uri: edit/main/docs/
45

6+
nav:
7+
- index.md
8+
- engine.md
9+
- sessions-and-transactions.md
10+
- executing.md
11+
- sql-functions.md
12+
- models.md
13+
- sql-utilities.md
14+
- mapper.md
15+
- schema.md
16+
- drivers.md
17+
518
theme:
619
name: material
720
palette:
@@ -25,18 +38,6 @@ theme:
2538
- toc.integrate
2639
icon:
2740
edit: material/pencil
28-
29-
nav:
30-
- index.md
31-
- engine.md
32-
- sessions-and-transactions.md
33-
- executing.md
34-
- sql-functions.md
35-
- models.md
36-
- sql-utilities.md
37-
- mapper.md
38-
- schema.md
39-
- drivers.md
4041

4142
markdown_extensions:
4243
- admonition

0 commit comments

Comments
 (0)