Project Structure: Full Project
===============================

📂 codex-platform/
    📄 .gitignore
    📄 .pre-commit-config.yaml
    📄 CHANGELOG.md
    📄 README.md
    📄 mkdocs.yml
    📄 project_structure.txt
    📄 pyproject.toml
    📂 .claude/
        📄 settings.local.json
    📂 docs/
        📄 changelog.md
        📄 index.md
        📂 en/
            📂 api/
                📄 index.md
                📂 notifications/
                    📄 channels.md
                    📄 dto.md
                    📄 index.md
                    📄 orchestrator.md
                    📄 registry.md
                    📄 renderer.md
                    📂 delivery/
                        📄 arq.md
                        📄 base.md
                        📄 direct.md
                📂 redis_service/
                    📄 base.md
                    📄 index.md
                    📄 keys.md
                    📄 service.md
                    📂 operations/
                        📄 hash.md
                        📄 json_module.md
                        📄 json_string.md
                        📄 list_.md
                        📄 pipeline.md
                        📄 set_.md
                        📄 string.md
                        📄 zset.md
                📂 streams/
                    📄 consumer.md
                    📄 dispatcher.md
                    📄 index.md
                    📄 processor.md
                    📄 producer.md
                    📄 router.md
                📂 workers/
                    📂 arq/
                        📄 base.md
                        📄 config.md
                        📄 index.md
                        📄 task_utils.md
                        📄 types.md
            📂 architecture/
                📂 notifications/
                    📄 README.md
                    📄 data_flow.md
                📂 redis_service/
                    📄 README.md
                    📄 data_flow.md
                📂 streams/
                    📄 README.md
                    📄 data_flow.md
                📂 workers/
                    📄 README.md
                    📄 data_flow.md
        📂 ru/
            📂 architecture/
                📂 notifications/
                    📄 README.md
                    📄 data_flow.md
                📂 redis_service/
                    📄 README.md
                    📄 data_flow.md
                📂 streams/
                    📄 README.md
                    📄 data_flow.md
                📂 workers/
                    📄 README.md
                    📄 data_flow.md
        📂 stylesheets/
            📄 extra.css
    📂 src/
        📂 codex_platform/
            📄 __init__.py
            📂 notifications/
                📄 __init__.py
                📄 channels.py
                📄 dto.py
                📄 interfaces.py
                📄 orchestrator.py
                📄 registry.py
                📄 renderer.py
                📂 clients/
                    📄 __init__.py
                    📄 smtp.py
                📂 delivery/
                    📄 __init__.py
                    📄 arq.py
                    📄 base.py
                    📄 direct.py
            📂 redis_service/
                📄 __init__.py
                📄 base.py
                📄 exceptions.py
                📄 keys.py
                📄 service.py
                📂 managers/
                    📄 __init__.py
                    📄 base_manager.py
                    📄 site_settings.py
                📂 operations/
                    📄 __init__.py
                    📄 hash.py
                    📄 json_module.py
                    📄 json_string.py
                    📄 list_.py
                    📄 pipeline.py
                    📄 set_.py
                    📄 string.py
                    📄 zset.py
            📂 streams/
                📄 __init__.py
                📄 consumer.py
                📄 dispatcher.py
                📄 processor.py
                📄 producer.py
                📄 router.py
            📂 workers/
                📄 __init__.py
                📂 arq/
                    📄 __init__.py
                    📄 base.py
                    📄 config.py
                    📄 task_utils.py
                    📄 types.py
    📂 tests/
        📂 integration/
            📄 __init__.py
            📄 conftest.py
            📄 test_docs_build.py
            📄 test_redis_service.py
            📄 test_streams.py
        📂 unit/
            📄 __init__.py
            📄 conftest.py
            📄 test_arq_task_utils.py
            📄 test_notification_channels.py
            📄 test_notification_dto.py
            📄 test_notification_orchestrator.py
            📄 test_notification_registry.py
            📄 test_notification_renderer.py
            📄 test_notification_smtp.py
            📄 test_redis_base.py
            📄 test_redis_hash.py
            📄 test_redis_keys.py
            📄 test_redis_list.py
            📄 test_redis_manager.py
            📄 test_redis_pipeline.py
            📄 test_redis_service.py
            📄 test_redis_set.py
            📄 test_redis_string.py
            📄 test_redis_zset.py
            📄 test_site_settings_manager.py
            📄 test_stream_consumer.py
            📄 test_stream_dispatcher.py
            📄 test_stream_processor.py
            📄 test_stream_producer.py
            📄 test_stream_router.py
    📂 tools/
        📄 __init__.py
        📂 dev/
            📄 README.md
            📄 __init__.py
            📄 check.py
            📄 generate_project_tree.py
