{"id":48257733,"url":"https://github.com/section77/werbematerial-gh-pages","last_synced_at":"2026-04-04T21:19:41.384Z","repository":{"id":49506142,"uuid":"191221663","full_name":"section77/werbematerial-gh-pages","owner":"section77","description":"Web Gallerie","archived":false,"fork":false,"pushed_at":"2025-08-26T07:13:25.000Z","size":149,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-26T09:15:52.173Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://section77.github.io/werbematerial/","language":"Nix","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/section77.png","metadata":{"files":{"readme":"README.org","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}},"created_at":"2019-06-10T18:12:34.000Z","updated_at":"2025-08-26T07:13:22.000Z","dependencies_parsed_at":"2024-03-19T21:28:10.621Z","dependency_job_id":"b458ce06-3323-43b3-a7a4-1c0f98deea3c","html_url":"https://github.com/section77/werbematerial-gh-pages","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/section77/werbematerial-gh-pages","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/section77%2Fwerbematerial-gh-pages","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/section77%2Fwerbematerial-gh-pages/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/section77%2Fwerbematerial-gh-pages/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/section77%2Fwerbematerial-gh-pages/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/section77","download_url":"https://codeload.github.com/section77/werbematerial-gh-pages/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/section77%2Fwerbematerial-gh-pages/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31414689,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":"2026-04-04T21:19:40.839Z","updated_at":"2026-04-04T21:19:41.367Z","avatar_url":"https://github.com/section77.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"* Web Gallerie für unser Werbematerial\n\n/work in progress …/\n\nUnser Werbematerial liegt unter [[https://github.com/section77/werbematerial][section77/werbematerial]].\nDie Gallerie auf [[https://section77.github.io/werbematerial/]] wird aus diesem Projekt gebaut.\n\n*werbematerial-gh-pages* ist in [[http://www.purescript.org/][Purescript]] implementiert, welches zu JavaScript kompiliert.\n\nEs besteht zwei \"/Programmen/\":\n\n** Indexer\n\nDer *Indexer* ist eine /nodejs app/, welche aus einem gegebenen Verzeichnis einen\nIndex für die *WebApp* erstellt.\n\nDabei werden Dateien\n\n  - welche sich nur in der Erweiterung unterscheiden als ein *Item* zusammengefasst\n  - mit dem Prefix 'gh-pages-preview-\u003cNAME\u003e' beginnen als Vorschaubild verwendet\n\n\n**** Beispiel\n\n Aus folgende Verzeichnisstruktur\n\n  #+BEGIN_EXAMPLE\n  j@main: tree result/\n  result/\n  ├── bilder\n  │   ├── blue-pill.jpg\n  │   ├── eggbot.jpg\n  │   ├── gh-pages-preview-blue-pill.jpg\n  │   ├── gh-pages-preview-eggbot.jpg\n  │   ...\n  ├── logo\n  │   ├── gh-pages-preview-section77.png\n  │   ├── section77.pdf\n  │   ├── section77.png\n  │   └── section77.svg\n  │   ...\n  #+END_EXAMPLE\n\n baut der *Indexer* folgenden ~items.json~ Index auf:\n\n #+BEGIN_EXAMPLE\n {\n   \"bilder\": [\n     { \"name\": \"blue-pill\",\n       \"previewImage\": { \"name\": \"gh-pages-preview-blue-pill.jpg\", ... },\n       \"files\": [\n         { \"name\": \"blue-pill.jpg\", ... }\n       ]\n     },\n     {\n       \"name\": \"eggbot\",\n       \"previewImage\": { \"name\": \"gh-pages-preview-eggbot.jpg\", ... },\n       \"files\": [\n         { \"name\": \"eggbot.jpg\", ... }\n       ]\n     }\n   ],...\n   \"logo\": [\n     { \"name\": \"section77\",\n       \"previewImage\": { \"name\": \"gh-pages-preview-section77.png\", ... }\n       \"files\": [\n         { \"name\": \"section77.pdf\", ... },\n         { \"name\": \"section77.png\", ... },\n         { \"name\": \"section77.svg\", ... }\n       ]\n     }\n   ], ...\n }\n #+END_EXAMPLE\n\n\n** WebApp\n\nDie *WebApp* ist eine /Browser app/ und lädt vom Webserver die ~items.json~ Datei aus der die Gallerie gebaut wird.\n\n\nMit diesem Setup brauchen wir für die Bildergallerie kein spezielles Backend, und wir können einfach GitHub Pages verwenden.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsection77%2Fwerbematerial-gh-pages","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsection77%2Fwerbematerial-gh-pages","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsection77%2Fwerbematerial-gh-pages/lists"}