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
- Host: GitHub
- URL: https://github.com/fdjrr/fastapi-py
- Owner: fdjrr
- Created: 2023-04-02T06:23:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-22T12:41:04.000Z (over 2 years ago)
- Last Synced: 2025-01-18T00:49:15.311Z (11 months ago)
- Topics: fastapi, python
- Language: Python
- Homepage: https://github.com/fdjrr/nyobain-fastapi
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```