Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.29 KB

File metadata and controls

48 lines (32 loc) · 1.29 KB

DF Wallet Auth Service

Developers Foundry Wallet Auth Service

  Version: v1.0.0 Checked with pyright Ruff


OpenAPI/Swagger Documentation

The Swagger documentation for the application is hosted on Render along with the application server.

Setup

  • Clone the repository

    git clone https://github.com/Developer-s-Foundry/auth-service.git auth-service
    cd auth-service
  • Setup UV.
    Click to Install UV

  • Synchronize the package requirements

    uv sync
  • Setup environment variables
    You can use .env file in the root directory to configure the variables
    See the example in ENV Example

  • Run migrations

    uv run manage.py migrate --database pg
  • Run the server locally on port 8000

    uv run uvicorn src.config.asgi:application --reload --port 8000