Add complete NexaFabric project structure including: - FastAPI backend with SQLAlchemy models, JWT auth, RBAC, audit logging, and provider interfaces - React + TypeScript frontend with Vite, Tailwind CSS, TanStack Query, and Zustand - Docker Compose configuration for PostgreSQL, Redis, API, worker, frontend, and nginx - GitHub Actions and GitLab CI workflows for testing, linting, building, and security scanning - Environment
39 lines
772 B
TOML
39 lines
772 B
TOML
[project]
|
|
name = "nexafabric-backend"
|
|
version = "0.1.0"
|
|
description = "NexaFabric FastAPI backend"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"alembic>=1.13.2",
|
|
"argon2-cffi>=23.1.0",
|
|
"celery>=5.4.0",
|
|
"cryptography>=43.0.0",
|
|
"email-validator>=2.2.0",
|
|
"fastapi>=0.115.0",
|
|
"httpx>=0.27.0",
|
|
"passlib>=1.7.4",
|
|
"psycopg[binary]>=3.2.1",
|
|
"pydantic-settings>=2.4.0",
|
|
"python-jose[cryptography]>=3.3.0",
|
|
"python-multipart>=0.0.9",
|
|
"redis>=5.0.8",
|
|
"sqlalchemy>=2.0.32",
|
|
"uvicorn[standard]>=0.30.6",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.3.2",
|
|
"pytest-asyncio>=0.23.8",
|
|
"ruff>=0.6.3",
|
|
"mypy>=1.11.1",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|