Commit 83f7ee18 authored by ecow's avatar ecow
Browse files

chore(doc): remove unused dependencies and simplify CI pipeline

Removed npm, postcss, and autoprefixer from CI pipeline as they are no longer needed. Updated Docker image to use official Hugo image. Simplified README and removed redundant compliance documentation sections.
parent ade9e6be
Loading
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
image: registry.gitlab.com/pages/hugo/hugo_extended:0.131.0
image: hugomods/hugo:0.157.0

pages:
  stage: deploy
  script:
    - apk add go npm curl
    - npm i -D postcss postcss-cli autoprefixer
    - hugo --enableGitInfo
  artifacts:
    paths:

Dockerfile

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
FROM floryn90/hugo:ext-alpine

USER root

RUN apk add git && \
    git config --global --add safe.directory /src
+1 −13
Original line number Diff line number Diff line
@@ -12,27 +12,15 @@ Official reference documentation hub for [HDTwin](https://hdtwin.eu), published

The development environment is fully containerized. You do not need Hugo installed locally.

### Prerequisites
- Docker
- Docker Compose

### Run Development Server
To start the local Hugo server with live reload:

```bash
docker-compose up
docker-compose up --build
```

The site will be available at `http://localhost:1313/`.

### Building Site for Production
To build the static site locally using Docker:

```bash
docker-compose run --rm hugo
```

The output will be generated in the `/public` directory.

## CI/CD and Deployment

+1 −0
Original line number Diff line number Diff line
---
title: HDTwin documentation
description: HDTwin documentation portal
hide_feedback: true
cascade:
  type: docs
---
+1 −9
Original line number Diff line number Diff line
---
title: "Compliance & Legal"
linkTitle: "Compliance"
hide_feedback: true
cascade:
  type: docs
---
@@ -8,12 +9,3 @@ cascade:
## Overview

HDTwin is committed to maintaining the highest standards of data privacy, ethical artificial intelligence, and regulatory compliance. Our platform is built on a "Compliance by Design" principle, ensuring that our innovative use of neuro-symbolic AI to create Human Digital Twins (HDT) aligns with global best practices and emerging regulations.

This section provides comprehensive documentation on our legal framework, including:

*   **GDPR Privacy Policy**: How we protect and process personal data.
*   **EU AI Act Compliance**: Our adherence to European AI regulations and transparency obligations.
*   **Terms of Service**: The contractual agreement governing the use of the HDTwin platform.
*   **Logo & Branding**: Guidelines for the use of our intellectual property.
*   **Ethics & AI Safety**: Our commitment to bias sterilization and explainable AI insights.
Loading