CoolFace
Apppublic

umergohar/ham10000-backend

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
App README

๐Ÿš€ FastAPI Backend on Hugging Face Spaces

This repository hosts a FastAPI backend running inside a Docker container, deployed on Hugging Face Spaces. The app exposes RESTful endpoints for inference, data processing, or any other backend tasks.


๐Ÿง  Features

  • โ€”Built using FastAPI for speed and async support โšก
  • โ€”Deployed using Docker for consistent environments ๐Ÿณ
  • โ€”Automatically runs on port 7860 (default for Spaces)

๐Ÿ› ๏ธ Local Development

You can run this project locally before deploying:

bash
# Clone the repo
git clone https://huggingface.co/spaces/<username>/<repo-name>
cd <repo-name>

# Build and run Docker container
docker build -t my-fastapi-app .
docker run -p 7860:7860 my-fastapi-app