jleei / fastapi-starter

Starter project for a FastAPI application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FastAPI Starter

This is a starter project for a FastAPI application.

Installation

  1. Clone the repository:

    git clone https://github.com/glowx/fastapi-starter.git
    
  2. Create a virtual environment and activate it:

    cd fastapi-starter
    python3 -m venv .venv
    source .venv/bin/activate
    
  3. Install the requirements:

    pip3 install -r requirements.txt
    

Running the Application

To run the application, use the following command:

uvicorn app.main:app --reload

The application will be available at http://localhost:8000.

About

Starter project for a FastAPI application.

License:MIT License


Languages

Language:Python 94.2%Language:Dockerfile 5.8%