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

https://github.com/fdjrr/fastapi-py

Nyobain FastAPI untuk membuat RestAPI
https://github.com/fdjrr/fastapi-py

fastapi python

Last synced: 10 months ago
JSON representation

Nyobain FastAPI untuk membuat RestAPI

Awesome Lists containing this project

README

          

# Testing Project

## Installation

```
$ python3 -m pip install virtualenv
$ virtualenv venv

# Linux
$ source venv/bin/activate

# Windows
$ venv/Scripts/activate

$ pip install -r requirements.txt

$ alembic init alembic
# set sqlalchemy.url on alembic.ini

# make migration
$ alembic revision -m '{migration name}'

# run migration
$ alembic upgrade head
```