{"id":34658909,"url":"https://github.com/sentexi/central-upstream","last_synced_at":"2026-05-25T18:02:51.523Z","repository":{"id":328047099,"uuid":"1114067962","full_name":"Sentexi/central-upstream","owner":"Sentexi","description":"The all in one web app to solve all my disorganised needs","archived":false,"fork":false,"pushed_at":"2026-05-05T14:03:15.000Z","size":738,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-05T16:09:23.795Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sentexi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-10T21:18:20.000Z","updated_at":"2026-05-05T14:05:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Sentexi/central-upstream","commit_stats":null,"previous_names":["sentexi/central-upstream"],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/Sentexi/central-upstream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sentexi%2Fcentral-upstream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sentexi%2Fcentral-upstream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sentexi%2Fcentral-upstream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sentexi%2Fcentral-upstream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sentexi","download_url":"https://codeload.github.com/Sentexi/central-upstream/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sentexi%2Fcentral-upstream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33486787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-25T14:31:05.219Z","status":"ssl_error","status_checked_at":"2026-05-25T14:31:02.878Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-12-24T18:38:18.834Z","updated_at":"2026-05-25T18:02:51.518Z","avatar_url":"https://github.com/Sentexi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Central Upstream – Skeleton\n\nDieses Repo ist ein Skeleton für:\n\n- Flask-Backend als API-Server mit Modul-Registry\n- React-Frontend (geplant mit Vite) mit Modul-Slot-System\n\nAktuell werden nur Ordnerstruktur und Basis-Dateien erstellt.\nKein venv, keine npm-Installationen – das passiert lokal je nach System.\n\n## Struktur\n\n- \\`backend/\\` – Flask-App\n  - \\`app/core\\` – Config, Module-Basis, Registry\n  - \\`app/modules\\` – Platz für Backend-Module\n  - \\`app/api\\` – zentrale API-Routen\n- \\`frontend/\\` – React-Skeleton\n  - \\`src/core\\` – Modul-Typen \u0026 Registry\n  - \\`src/modules\\` – Platz für Frontend-Module\n\n## Nächste Schritte (manuell)\n\n### Backend\n\n1. Lokale venv anlegen (nicht im Repo):\n2. Abhängigkeiten installieren aus \\`backend/requirements.txt\\`.\n3. \\`python backend/run_dev.py\\` starten.\n\n### Frontend\n\n1. Sicherstellen, dass Node + npm installiert sind.\n2. In \\`frontend/\\`:\n   - \\`npm install\\` (installiert Dependencies lokal)\n   - \\`npm run dev\\` (Dev-Server starten, optional Vite)\n\nDie Implementierung der eigentlichen Module (z.B. \\`quick_capture\\`) erfolgt später\nunter \\`backend/app/modules/\\` und \\`frontend/src/modules/\\`.\n\n### Manual-Import Metadaten (Health)\n\nDas Health-Modul liefert in seinem Settings-Schema zusätzlich einen \\`manual_import\\` Block\n(\\`GET /api/settings/schema\\`), der dem Frontend Dateiuploads beschreibt:\n\n- \\`endpoint\\`: Ziel-URL für den Upload (\\`/api/health/ingest\\`)\n- \\`upload_kind\\`: \\`\\\"json\\\"\\` bedeutet, dass die Datei als JSON gelesen und als \\`application/json\\` gesendet wird (statt multipart).\n- \\`accept\\`: Liste erlaubter MIME-Types/Endungen (z. B. \\`[\\\"application/json\\\", \\\".json\\\"]\\`)\n- \\`help_text\\` / \\`upload_hint\\`: kurze Hinweise für die UI\n- \\`success_message\\` / \\`error_message\\`: optionale Texte für Upload-Feedback\n\n# Linux (Ubuntu/Debian) – Install via GitHub Release Bundle\n\nsudo apt update\nsudo apt install -y unzip python3-venv\n\nmkdir -p /opt/central-upstream \u0026\u0026 cd /opt/central-upstream\n\n## download release asset (replace OWNER/REPO + TAG)\n\n```\ncurl -L -o release_bundle.zip \"https://github.com/sentexi/central-upstream/releases/download/vX.X.X/release_bundle.zip\"\n```\n\n```\nunzip -o release_bundle.zip\ncp .env.example .env\n```\n```\nchmod +x run.sh\n./run.sh\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsentexi%2Fcentral-upstream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsentexi%2Fcentral-upstream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsentexi%2Fcentral-upstream/lists"}