Developer Hub / Systems Operations / Configuration Files

Configuration Files Portal

QFI³ Monoroot Infrastructure & Build Configuration

qfi3_monoroot_manifest.config.yaml

WORKSPACE

Core monoroot workspace manifest defining brand platforms, deployment targets, and module organization.

Type: YAML
Scope: Monoroot
Purpose: Architecture
# Monoroot manifest structure
brands:
  - name: CellJourney
    deployments: [static_site, flask_webapp]
  - name: EnableYou
  - name: QSpective

package.json (Root)

WORKSPACE

NPM workspace configuration for frontend development with TypeScript, React, Vite, and testing frameworks.

Type: JSON
Manager: npm/pnpm
Workspaces: Yes

pyproject.toml

BACKEND

Modern Python project configuration with build system, dependencies, and tool settings (Black, isort, pytest).

Type: TOML
Build: setuptools
Tools: Black, isort

requirements.txt

BACKEND

Python dependencies for Flask apps, Azure SDK, quantum algorithms, and data processing modules.

Type: TXT
Install: pip install -r
Includes: Flask, Azure, NumPy

tsconfig.json

FRONTEND

TypeScript compiler options for React apps with path aliases, strict mode, and ESNext features.

Type: JSON
Target: ESNext
Strict: Enabled

vite.config.ts

FRONTEND

Vite build configuration with React plugin, path resolution, and development server settings.

Type: TypeScript
Bundler: Vite
Plugins: React

tailwind.config.js

FRONTEND

Tailwind CSS configuration for brand theming, color palettes, and responsive design utilities.

Type: JavaScript
Framework: Tailwind CSS
Themes: Custom

Makefile

CI/CD

Build automation for QICI branch management, development startup, CI pipelines, and deployment tasks.

Type: Makefile
Targets: 20+
Workflow: QICI
# Common targets
make dev         # Full development startup
make ci          # Run CI pipeline
make branch-sync # Sync all branches

deployment_packages/

DEPLOYMENT

Deployment configurations for Azure App Service, Static Web Apps, and function apps with environment-specific settings.

Type: Directory
Target: Azure
Apps: 6+
# Active deployments
celljourney_static_site → CellJourneyLaunchSite
celljourney_flask_webapp → cell-journet
qspective_static_site → qi3ci-commercial-static-portal-east2

pyrightconfig.json

BACKEND

Pyright type checker configuration for Python code analysis, type checking, and IDE integration.

Type: JSON
Checker: Pyright
Mode: Strict
Back to Systems Operations