{"id":36619499,"url":"https://github.com/iwwwanow/owo","last_synced_at":"2026-04-03T14:04:18.220Z","repository":{"id":185099597,"uuid":"672997877","full_name":"iwwwanow/owo","owner":"iwwwanow","description":"file-based portfolio builder","archived":false,"fork":false,"pushed_at":"2026-03-28T22:07:13.000Z","size":154879,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-29T00:55:02.513Z","etag":null,"topics":["art","cms","portfolio"],"latest_commit_sha":null,"homepage":"","language":"Go","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/iwwwanow.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":"docs/roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-07-31T16:25:17.000Z","updated_at":"2026-03-28T22:07:17.000Z","dependencies_parsed_at":"2026-01-03T11:07:13.553Z","dependency_job_id":null,"html_url":"https://github.com/iwwwanow/owo","commit_stats":{"total_commits":226,"total_committers":3,"mean_commits":75.33333333333333,"dds":0.08407079646017701,"last_synced_commit":"c511e523345cb4b1dbe947ac581cb16986e03070"},"previous_names":["effektivnayarabota1/owwo","kirill-ivanovvv/owwo","iwwwanow/owwo","iwwwanow/owo"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/iwwwanow/owo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwwwanow%2Fowo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwwwanow%2Fowo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwwwanow%2Fowo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwwwanow%2Fowo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iwwwanow","download_url":"https://codeload.github.com/iwwwanow/owo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwwwanow%2Fowo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31355855,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T08:03:20.796Z","status":"ssl_error","status_checked_at":"2026-04-03T08:00:37.834Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["art","cms","portfolio"],"created_at":"2026-01-12T09:18:05.449Z","updated_at":"2026-04-03T14:04:18.214Z","avatar_url":"https://github.com/iwwwanow.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# owo\n\nfile-based portfolio builder\n\n\u003cimg src=\"assets/output/cover-cropped.png\" width=\"480\" alt=\"owo\" /\u003e\n\n_Kirill Ivanov 2026 Moscow_\n\n---\n\n**owo** is a self-hosted web server that turns a directory of files into a portfolio website. Drop in images, text, markdown, or any other files — owo renders them automatically with a clean UI, no configuration required.\n\n## Features\n\n- **File-first** — no database, no CMS. The filesystem is the content model\n- **Markdown support** — `.md` files are rendered as HTML\n- **Per-directory metadata** — add `index.md`, `index.css`, `index.js`, or a cover image via `.meta/` subfolder\n- **Docker-native** — single container, minimal footprint\n- **SSH key auth** — upload files via `scp` or `rsync` with your own SSH key\n\n## Quick start\n\nInitialize owo data directory on your host:\n\n```sh\ncurl -sSL https://raw.githubusercontent.com/iwwwanow/owo/master/scripts/owo-init.sh | sh -s -- 'YOUR_SSH_PUBLIC_KEY'\n```\n\nThen run with Docker:\n\n```sh\ndocker run -d \\\n  -p 3000:3000 \\\n  -e PUBLIC_DIR=/var/www/owo/uploads \\\n  -v /var/www/owo:/var/www/owo \\\n  ghcr.io/iwwwanow/owo:latest\n```\n\n## Environment variables\n\n| Variable | Default | Description |\n|---|---|---|\n| `PORT` | `3000` | HTTP server port |\n| `PUBLIC_DIR` | — | Path to uploads directory |\n| `TZ` | `Europe/Moscow` | Timezone |\n\n## Directory structure\n\nEach portfolio item is a directory under `PUBLIC_DIR`. Optionally add a `.meta/` subfolder:\n\n```\nuploads/\n└── my-project/\n    ├── photo.jpg\n    ├── video.mp4\n    └── .meta/\n        ├── index.md      # description, rendered as HTML\n        ├── index.css     # custom styles\n        ├── index.js      # custom scripts\n        └── cover.jpg     # directory cover image\n```\n\n## Development\n\n```sh\ndocker-compose up air\n```\n\nBuild:\n\n```sh\ngo build -o ./tmp/main ./cmd/main.go\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwwwanow%2Fowo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiwwwanow%2Fowo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwwwanow%2Fowo/lists"}