{"id":30290830,"url":"https://github.com/patrickjaja/pimcore-demo-latest","last_synced_at":"2026-02-13T02:47:01.984Z","repository":{"id":277060031,"uuid":"927873069","full_name":"patrickjaja/pimcore-demo-latest","owner":"patrickjaja","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-03T12:22:30.000Z","size":198452,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-16T23:55:49.874Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patrickjaja.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-05T17:24:24.000Z","updated_at":"2025-02-27T10:10:31.000Z","dependencies_parsed_at":"2025-08-17T00:06:01.021Z","dependency_job_id":null,"html_url":"https://github.com/patrickjaja/pimcore-demo-latest","commit_stats":null,"previous_names":["patrickjaja/pimcore-demo-latest"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/patrickjaja/pimcore-demo-latest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickjaja%2Fpimcore-demo-latest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickjaja%2Fpimcore-demo-latest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickjaja%2Fpimcore-demo-latest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickjaja%2Fpimcore-demo-latest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickjaja","download_url":"https://codeload.github.com/patrickjaja/pimcore-demo-latest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickjaja%2Fpimcore-demo-latest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29393703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T00:53:09.511Z","status":"online","status_checked_at":"2026-02-13T02:00:10.076Z","response_time":78,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-08-16T23:55:31.360Z","updated_at":"2026-02-13T02:47:01.968Z","avatar_url":"https://github.com/patrickjaja.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Demo and Blueprint Application for Pimcore AI-Driven E-commerce\n\nThis demo package showcases a basic implementation of an AI agent-driven e-commerce experience, starting with a customer request.  It is a work in progress and should not be considered production-ready.  Many standard e-commerce and Pimcore functionalities are still undeveloped.  **This is an unmaintained fork and should not be used in production environments.**\n\n**Key Features Demonstrated:**\n\n*   Automated domain model creation.\n*   Automated creation of products.\n\n**Features Not Covered:**\n\n*   CMS pages\n*   Customer-specific CI\n*   AI-generated product detail pages (varied structures) (Twig templates)\n*   Product listing pages and categories\n*   Shopping cart and checkout process\n*   Customer accounts and management\n*   Order management\n*   ...and many other standard e-commerce features\n\n**Architecture Overview:**\n\n[Target_Architecture.drawio.png](Target_Architecture.drawio.png)\n\n**Architecture Overview:**\n\n - [Target_Architecture.drawio.png](Target_Architecture.drawio.png)\n\n**Screenshots:**\n\n - [2025-02-15_19-34.png](2025-02-15_19-34.png)\n - [2025-02-15_19-35.png](2025-02-15_19-35.png)\n - [2025-02-15_19-35_1.png](2025-02-15_19-35_1.png)\n - [2025-02-15_19-35_2.png](2025-02-15_19-35_2.png)\n\n**Installation:**\n\nThis project is based on the Pimcore demo project (https://github.com/pimcore/demo).  Follow these steps:\n\n1.  **Create Project:** (Base)\n    ```bash\n    docker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.3-latest composer create-project --no-scripts patrickjaja/pimcore-ai-demo my-project\n    ```\n    *(This command also handles database and user creation within the Docker environment.)*\n\n2.  **Install Assets:** (Base)\n    ```bash\n    docker compose exec php vendor/bin/console assets:install --symlink --relative\n    ```\n\n3.  **Install Pimcore:** (Base)\n    ```bash\n    docker compose exec php vendor/bin/pimcore-install --mysql-host-socket=db --mysql-username=pimcore --mysql-password=pimcore --mysql-database=pimcore\n    ```\n\n4.  **Clear Cache:** (Base)\n    ```bash\n    docker compose exec php bin/console cache:clear\n    ```\n\n5.  **Convert AI generated Schema to PimCore schema Definition \u0026 import it:** (exemplary)\n    ```bash\n    # add your OPEN_ROUTER api key in .env file\n    docker compose exec php bin/console app:auto-map-json -i data/product_model_1.json -o cache/generated/class_StaticImportedProductType1_export.json -p data/prompt/model_prompt.md\n    docker compose exec php bin/console pimcore:definition:import:class cache/generated/class_StaticImportedProductType1_export.json\n    ```\n\n6.  **Convert AI generated data to PimCore product schema specific data \u0026 import it:** (exemplary)\n    ```bash\n    docker compose exec php bin/console app:auto-map-data-json -i data/product_data_1.json -o cache/generated/data_StaticImportedProductType1_export.json -s cache/generated/class_StaticImportedProductType1_export.json -p data/prompt/data_prompt.md\n    docker compose exec php bin/console app:import-data-command -m cache/generated/class_StaticImportedProductType1_export.json -d cache/generated/data_StaticImportedProductType1_export.json\n    ```\n\n7.  **Verify Installation:** Access the Pimcore admin interface at http://localhost/admin. Navigate to \"Data Objects\" -\u003e \"Product Data\" to view the imported product.\n\n**Data Structures:**\n\n*   **Pimcore Class Import:**  Defines the object data structures. ([class_ExampleProductType_export.json](class_ExampleProductType_export.json))\n*   **Pimcore Object Bricks:** Reusable objects attached to a class. ([objectbrick_SaleInformation_export.json](objectbrick_SaleInformation_export.json))\n*   **Product Data Example:** Product data based on the imported structure. ([data_ExampleProductType_export.json](data_ExampleProductType_export.json))\n\n**Personal Notes (For Development):**\n\n*   **Start Xdebug:**\n    ```bash\n    php -d xdebug.mode=debug -d xdebug.client_host=172.23.0.1 -d xdebug.client_port=9003 -d xdebug.idekey=\"PHPSTORM\" -d xdebug.start_with_request=yes bin/console pimcore:definition:import:class class.json\n    ```\n*   **Docker Compose Down (with Volumes):**\n    ```bash\n    docker-compose down --volumes\n    ```\n*   **Pimcore Install (Skipping Data):**\n    ```bash\n    docker compose exec php vendor/bin/pimcore-install --mysql-host-socket=db --mysql-username=pimcore --mysql-password=pimcore --mysql-database=pimcore --skip-database-data --skip-database-data-dump\n    ```\n*   **Example Preview URL:**\n    ```\n    http://localhost/en/shop/Products/coffee-filters/EN-MelittaR-Original--100--braun--40-St~p1193?pimcore_object_preview=1193\u0026dc=1739303623\n    ```\n*   **Example Product URL:**\n    ```\n    http://localhost/en/shop/Products/EN-MelittaR-Original--100--braun--40-St~p1193\n    ```\n    - hosted container access via pimcore-cloud ssh\n\n**Pimcore Project Stack Notes:**\n\n*   [Pimcore Deployment Tools](https://docs.pimcore.com/platform/Pimcore/Deployment/Deployment_Tools/#potentially-useful-commands)\n*   [Pimcore Workflow Automation](https://docs.pimcore.com/platform/Workflow_Automation/Work_with_WAI)\n\n # boot env pimcore cloud\n - docker compose exec -u 0 -it php bash\n - php pimcore.phar auth:api-token-login\n\n # auto transform input schema to output schema\n - bin/console app:auto-map-json -i data/product_model_1.json -o cache/generated/class_StaticImportedProductType1_export.json -p data/prompt/model_prompt.md\n - bin/console pimcore:definition:import:class cache/generated/class_StaticImportedProductType1_export.json\n\n# import data\n - bin/console app:auto-map-data-json -i data/product_data_1.json -o cache/generated/data_StaticImportedProductType1_export.json -s cache/generated/class_StaticImportedProductType1_export.json -p data/prompt/data_prompt.md\n - bin/console app:import-data-command -m cache/generated/class_StaticImportedProductType1_export.json -d cache/generated/data_StaticImportedProductType1_export.json\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickjaja%2Fpimcore-demo-latest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickjaja%2Fpimcore-demo-latest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickjaja%2Fpimcore-demo-latest/lists"}