armature-framework 0.2.2

A modern, type-safe HTTP framework for Rust inspired by Angular and NestJS. Features dependency injection, decorators, middleware, authentication (JWT/OAuth2/SAML), validation, OpenAPI/Swagger, caching, job queues, and observability.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Application Configuration
APP_NAME=Armature Config Example
APP_VERSION=0.1.0
APP_ENVIRONMENT=development

# Database Configuration
APP_DATABASE_HOST=localhost
APP_DATABASE_PORT=5432
APP_DATABASE_USERNAME=postgres
APP_DATABASE_PASSWORD=password
APP_DATABASE_DATABASE=armature_db

# Server Configuration
APP_SERVER_HOST=0.0.0.0
APP_SERVER_PORT=3008
APP_SERVER_CORS_ENABLED=true