Files
peikarband/peikarband/app.py
Ehsan.Asadi e795687d04
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix(reflex): create app.py in root and update app_name | ApprovalToken: 1767140757
- Create app.py in root directory to export app for Reflex
- Change app_name from 'src' to 'peikarband' to match root directory
- Fix relative import in src/__init__.py
- Fixes ModuleNotFoundError: Module src.src not found
2025-12-31 03:55:57 +03:30

11 lines
282 B
Python

"""Peikarband Landing Application Entry Point.
This file exports the Reflex app instance for the landing page.
Reflex will look for 'app' in the root module when app_name matches the root directory.
"""
from src.presentation.web.pages.landing.index import app
__all__ = ["app"]