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.
- Host: GitHub
- URL: https://github.com/kishan2029/post_mgmt
- Owner: Kishan2029
- Created: 2023-06-17T10:44:46.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T17:44:28.000Z (over 2 years ago)
- Last Synced: 2025-02-26T00:49:27.818Z (over 1 year ago)
- Topics: fastapi, jwt-authentication
- Language: Python
- Homepage: https://fastapi-g4u5.onrender.com/docs
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Post Management API



## :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
```