Skip to content

Files

Latest commit

author
„Andi
Aug 17, 2023
935ef20 · Aug 17, 2023

History

History
16 lines (12 loc) · 715 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 715 Bytes

FastAPI CRUD boilerplate for Redis Database

How to Use

  1. Git Clone: git clone https://github.com/ajerni/fastapi-redis-crud.git
  2. Move to the new directory: cd fastapi-redis-crud
  3. Create Virtual Environment: python -m venv env
  4. Activate Virtual Environment: source env/bin/activate
  5. Install Dependencies: pip install -r requirements.txt
  6. Save your Redis database password: echo "redis_key=xyz" > .env (replace xyz with your database password)
  7. Run Application: uvicorn main:app --reload

Live Demo