Skip to content

Commit

Permalink
Updated README & docs
Browse files Browse the repository at this point in the history
  • Loading branch information
maximebf committed May 22, 2024
1 parent 140065e commit 1220557
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**SQL-focused Python ORM**

![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)
![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)

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).

Expand Down
25 changes: 13 additions & 12 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,20 @@
site_name: sqlorm
repo_url: https://github.com/hyperflask/sqlorm
repo_name: hyperflask/sqlorm
edit_uri: edit/main/docs/

nav:
- index.md
- engine.md
- sessions-and-transactions.md
- executing.md
- sql-functions.md
- models.md
- sql-utilities.md
- mapper.md
- schema.md
- drivers.md

theme:
name: material
palette:
Expand All @@ -25,18 +38,6 @@ theme:
- toc.integrate
icon:
edit: material/pencil

nav:
- index.md
- engine.md
- sessions-and-transactions.md
- executing.md
- sql-functions.md
- models.md
- sql-utilities.md
- mapper.md
- schema.md
- drivers.md

markdown_extensions:
- admonition
Expand Down

0 comments on commit 1220557

Please sign in to comment.