Magazine

dominicusinPythonLGPL-2.1обновлено 2026-08-25

Magazine

📦 Справочная страница репозитория dominicusin/Magazine. Ниже — выдержка из README; полная документация — в репозитории.

О проекте / Documentation

🌟 Integral Philosophy Publishing System

Modular Academic Content Processing Platform - Split into focused subprojects

📦 Project Structure

This is the main project that orchestrates all subprojects:

integral-philosophy/
├── 🧠 subprojects/integral-philosophy-core/     # Core processing engine
├── 🌐 subprojects/integral-philosophy-web/      # Web interface & API
├── 🛠️ subprojects/integral-philosophy-cli/     # Command-line tools
├── 📚 subprojects/integral-philosophy-docs/    # Documentation
├── 📚 subprojects/integral-philosophy-content/ # Sample content
├── ⚙️ subprojects/integral-philosophy-config/ # Configuration
├── 🚀 subprojects/integral-philosophy-deploy/  # Deployment
└── 🧪 subprojects/integral-philosophy-tests/  # Testing suite

🚀 Quick Start

🔄 Setup with Submodules

\\\`bash

Clone with submodules

git clone --recursive https://github.com/dominicusin/integral-philosophy.git

cd integral-philosophy

Or initialize submodules manually

git submodule update --init --recursive

\\\`

🌟 Install Complete System

\\\`bash

Setup all subprojects

./setup-all.sh

Start complete system

./start-full.sh

\\\`

📦 Individual Subproject Usage

🧠 Core Engine

\\\`bash

cd subprojects/integral-philosophy-core

pip install -e ".[dev]"

integral-core parse content.md --format md

\\\`

🌐 Web Interface

\\\`bash

cd subprojects/integral-philosophy-web

pip install -e ".[dev]"

integral-web --port 8000

\\\`

🛠️ CLI Tools

\\\`bash

cd subprojects

Открыть репозиторий на GitHub ↗