Developers Foundry Wallet Auth Service
The Swagger documentation for the application is hosted on Render along with the application server.
-
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