| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A production-ready, modular Rust API framework designed for scalability and maintainability. Built with Actix-web, SeaORM, and Utoipa.
├── api # Main API server, handlers, services, routes, DTOs ├── entity # Database entities (SeaORM models) ├── migration # Database migrations ├── repository # Data access layer (Repositories) ├── util # Shared utilities (S3, Sanitization, etc.) ├── k8s # Kubernetes manifests ├── Cargo.toml # Workspace configuration └── Dockerfile # Multi-stage Docker build
Copy .env.example to .env and configure your database credentials:
cp .env.example .envcargo run -p migrationcargo run -p apiThe server will start at http://localhost:3000.
docker build -t cf-framework .
docker run -p 3000:3000 --env-file .env cf-frameworkThe k8s/ directory contains standard Kubernetes manifests:
Update configmap.yaml and secret.yaml with your production configuration before applying.
| Back | FazBrowse Home | New Git URL |