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

https://github.com/kishan2029/post_mgmt

Built on the efficient FastAPI framework, this server application allows users to access a wealth of existing posts. Secure JWT token authentication safeguards the system, granting content creation privileges only to registered users. After a quick signup process, users can delve into the creative process, generating and sharing their own post.
https://github.com/kishan2029/post_mgmt

fastapi jwt-authentication

Last synced: 2 months ago
JSON representation

Built on the efficient FastAPI framework, this server application allows users to access a wealth of existing posts. Secure JWT token authentication safeguards the system, granting content creation privileges only to registered users. After a quick signup process, users can delve into the creative process, generating and sharing their own post.

Awesome Lists containing this project

README

          


Fastapi

 

Post Management API


Github top language

Github language count

Repository size

Github stars


## :dart: About

Built on the efficient FastAPI framework, this server application allows users to access a wealth of existing posts. Secure JWT token authentication safeguards the system, granting content creation privileges only to registered users. After a quick signup process, users can delve into the creative process, generating and sharing their own post.

## :rocket: Technologies

The following tools were used in this project:
- FastAPI
- Python
- JWT Token Authentication

## Deploy Link
https://fastapi-g4u5.onrender.com/docs

## :checkered_flag: Starting

```bash
# Run Project
$ source env/bin/active # active the environment
$ pip3 install --upgrade pip # upgrade pip
$ pip3 install -r requirements.txt # install requirements
$ python3 -m uvicorn main:app
# The server will initialize in the
```

 

Back to top