An open API service indexing awesome lists of open source software.

https://github.com/carlos-rian/python-fastapi-prisma-orm


https://github.com/carlos-rian/python-fastapi-prisma-orm

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Prisma Python Client ORM

## Create an instance Postgresql using Docker

```sh
docker run --name some-postgres -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres
```

## Create a virtualenv and activate using Poetry

```sh
poetry shell
```

## Install dependencies

```sh
poetry install
```

## Up server using uvicorn

```sh
uvicorn app.main:app --reload
```