auth-framework 0.5.0-rc1

A comprehensive, production-ready authentication and authorization framework for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env pwsh
# Simple script to start the debug server
# Run this in a SEPARATE terminal window and leave it running

Write-Host "`n========================================" -ForegroundColor Cyan
Write-Host 'Debug Server Starter' -ForegroundColor Cyan
Write-Host "========================================`n" -ForegroundColor Cyan

Write-Host 'Starting debug server on http://localhost:8088...' -ForegroundColor Yellow
Write-Host "Press Ctrl+C to stop the server`n" -ForegroundColor Gray

# Run the server (this will block)
cargo run --example debug_server