Some checks failed
CD - Build & Deploy / build-and-push (push) Has been cancelled
CD - Build & Deploy / package-helm (push) Has been cancelled
CD - Build & Deploy / deploy-staging (push) Has been cancelled
CD - Build & Deploy / deploy-production (push) Has been cancelled
CD - Build & Deploy / release (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / security (push) Has been cancelled
- Implemented Clean Architecture with Domain, Application, Infrastructure, Presentation layers - Added comprehensive project structure following SOLID principles - Created Kubernetes deployment with Helm charts (HPA, PDB, NetworkPolicy) - Configured ArgoCD for automated deployment (production + staging) - Implemented CI/CD pipeline with GitHub Actions - Added comprehensive documentation (handbook, architecture, coding standards) - Configured PostgreSQL, Redis, Celery for backend services - Created modern landing page with Persian fonts (Vazirmatn) - Added Docker multi-stage build for production - Configured development tools (pytest, black, flake8, mypy, isort) - Added pre-commit hooks for code quality - Implemented Makefile for common operations
20 lines
596 B
Python
20 lines
596 B
Python
"""Reflex configuration file.
|
|
|
|
This file configures the Reflex application settings.
|
|
"""
|
|
|
|
import reflex as rx
|
|
|
|
config = rx.Config(
|
|
app_name="peikarband",
|
|
api_url="http://localhost:8000",
|
|
frontend_port=3000,
|
|
backend_port=8000,
|
|
db_url="sqlite:///reflex.db", # Temporary, will use PostgreSQL
|
|
disable_plugins=["reflex.plugins.sitemap.SitemapPlugin"],
|
|
stylesheets=[
|
|
"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap",
|
|
"https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css",
|
|
],
|
|
)
|