Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 554 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 554 Bytes

My FastAPI App

This is a sample FastAPI application.

Running the app locally

  1. Install dependencies:

    pip install -r requirements.txt
  2. Run the application:

    uvicorn app.main:app --reload

Building and running with Docker

  1. Build the Docker image:

    docker build -t my-fastapi-app .
  2. Run the Docker container:

    docker run -p 80:80 my-fastapi-app

Deployment

This repository includes a GitHub Actions workflow to deploy the application to AWS EKS.