https://github.com/sholehbaktiabadi/fastapi-simple-restapi
Simple FastApi CRUD Rest Api
https://github.com/sholehbaktiabadi/fastapi-simple-restapi
authentication authorization fastapi fastapi-crud fastapi-sqlalchemy jose-jwt mysql pydantic python sqlalchemy
Last synced: 24 days ago
JSON representation
Simple FastApi CRUD Rest Api
- Host: GitHub
- URL: https://github.com/sholehbaktiabadi/fastapi-simple-restapi
- Owner: sholehbaktiabadi
- Created: 2024-01-19T15:15:37.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T13:33:32.000Z (about 2 years ago)
- Last Synced: 2024-01-26T21:27:03.584Z (about 2 years ago)
- Topics: authentication, authorization, fastapi, fastapi-crud, fastapi-sqlalchemy, jose-jwt, mysql, pydantic, python, sqlalchemy
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Python Version
```bash
$ 3.10.12
```
## Pip Version
```bash
$ 23.3.2
```
## Set Virtual Env
```bash
# docs: https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
# Set virtual env
$ python3 -m venv .venv
# Activate virtual env
$ source .venv/bin/activate
```
## Install packages in a virtual environment
```bash
$ pip install -r requirements.txt
```
## Running the app
```bash
# cmd
$ python main.py
```