Skip to content

Commit 4e84418

Browse files
authored
Merge pull request #163 from grillazz/158-granian-poc
bum project deps
2 parents eccf2ed + fb54128 commit 4e84418

File tree

4 files changed

+536
-502
lines changed

4 files changed

+536
-502
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ To build , run and test and more ... use magic of make help to play with this pr
8181
1. make docker-build
8282
2. make docker-up
8383
3. make docker-apply-db-migrations
84-
4. make docker-feed-db
84+
4. make docker-feed-database
8585
```
8686

8787

@@ -193,20 +193,19 @@ I've included a few of my favorites to kick things off!
193193

194194
[fastapi.tiangolo.com]: https://img.shields.io/badge/FastAPI-0.111.0-009485?style=for-the-badge&logo=fastapi&logoColor=white
195195
[fastapi-url]: https://fastapi.tiangolo.com/
196-
[pydantic.com]: https://img.shields.io/badge/Pydantic-2.7.3-e92063?style=for-the-badge&logo=pydantic&logoColor=white
196+
[pydantic.com]: https://img.shields.io/badge/Pydantic-2.8.2-e92063?style=for-the-badge&logo=pydantic&logoColor=white
197197
[pydantic-url]: https://docs.pydantic.dev/latest/
198-
[sqlalchemy.org]: https://img.shields.io/badge/SQLAlchemy-2.0.30-bb0000?color=bb0000&style=for-the-badge
198+
[sqlalchemy.org]: https://img.shields.io/badge/SQLAlchemy-2.0.31-bb0000?color=bb0000&style=for-the-badge
199199
[sqlalchemy-url]: https://docs.sqlalchemy.org/en/20/
200200
[uvicorn.org]: https://img.shields.io/badge/Uvicorn-0.30.1-2094f3?style=for-the-badge&logo=uvicorn&logoColor=white
201201
[uvicorn-url]: https://www.uvicorn.org/
202202
[asyncpg.github.io]: https://img.shields.io/badge/asyncpg-0.29.0-2e6fce?style=for-the-badge&logo=postgresql&logoColor=white
203203
[asyncpg-url]: https://magicstack.github.io/asyncpg/current/
204204
[pytest.org]: https://img.shields.io/badge/pytest-8.2.2-fff?style=for-the-badge&logo=pytest&logoColor=white
205205
[pytest-url]: https://docs.pytest.org/en/6.2.x/
206-
[alembic.sqlalchemy.org]: https://img.shields.io/badge/alembic-1.13.1-6BA81E?style=for-the-badge&logo=alembic&logoColor=white
206+
[alembic.sqlalchemy.org]: https://img.shields.io/badge/alembic-1.13.2-6BA81E?style=for-the-badge&logo=alembic&logoColor=white
207207
[alembic-url]: https://alembic.sqlalchemy.org/en/latest/
208-
209208
[rich.readthedocs.io]: https://img.shields.io/badge/rich-13.7.1-009485?style=for-the-badge&logo=rich&logoColor=white
210209
[rich-url]: https://rich.readthedocs.io/en/latest/
211-
[redis.io]: https://img.shields.io/badge/redis-5.0.5-dc382d?style=for-the-badge&logo=redis&logoColor=white
210+
[redis.io]: https://img.shields.io/badge/redis-5.0.7-dc382d?style=for-the-badge&logo=redis&logoColor=white
212211
[redis-url]: https://redis.io/

app/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def lifespan(_app: FastAPI):
4545
await _app.postgres_pool.close()
4646

4747

48-
app = FastAPI(title="Stuff And Nonsense API", version="0.6", lifespan=lifespan)
48+
app = FastAPI(title="Stuff And Nonsense API", version="0.14", lifespan=lifespan)
4949

5050
app.include_router(stuff_router)
5151
app.include_router(nonsense_router)

0 commit comments

Comments
 (0)