{"id":50824897,"url":"https://github.com/belda/giftarium","last_synced_at":"2026-06-13T17:33:20.754Z","repository":{"id":348115096,"uuid":"1196559952","full_name":"belda/giftarium","owner":"belda","description":"Simple self-hosted app for gift wishlists for family and friends.","archived":false,"fork":false,"pushed_at":"2026-03-30T20:27:27.000Z","size":48,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-30T22:17:38.068Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/belda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2026-03-30T20:19:06.000Z","updated_at":"2026-03-30T20:27:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/belda/giftarium","commit_stats":null,"previous_names":["belda/giftarium"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/belda/giftarium","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belda%2Fgiftarium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belda%2Fgiftarium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belda%2Fgiftarium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belda%2Fgiftarium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/belda","download_url":"https://codeload.github.com/belda/giftarium/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/belda%2Fgiftarium/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34294411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"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":"2026-06-13T17:33:20.201Z","updated_at":"2026-06-13T17:33:20.747Z","avatar_url":"https://github.com/belda.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Giftarium\n\n\u003e Create gift wishlists and share them with your family and friends.\n\u003e They can register for a gift — you know you might get it, but not from whom.\n\nSelf-hostable. Docker deploy in under 5 minutes.\n\n---\n\n## Features\n\n- **Wishlists** — add gifts with name, description, link, and price range\n- **Sharing** — share a wishlist with a group (family, friends, colleagues)\n- **Anonymous reservations** — others can reserve a gift; you only see it's taken, not by whom\n- **Workspaces** — separate wishlists per group, with member invitations\n- **Google OAuth** — optional social login alongside email/password\n- **Multi-language** — Czech and English\n\n---\n\n## Self-hosted quickstart (Docker)\n\n**Requirements:** Docker + Docker Compose, a domain with HTTPS (nginx/Caddy/Traefik).\n\n```bash\n# 1. Clone and configure\ngit clone https://github.com/belda/giftarium.git\ncd giftarium\ncp .env.example .env\n```\n\nOpen `.env` and set these required values:\n\n```env\nSECRET_KEY=\u003crandom string\u003e\nALLOWED_HOSTS=gifts.example.com\nCSRF_TRUSTED_ORIGINS=https://gifts.example.com\nDB_PASSWORD=\u003cstrong password\u003e\nDEFAULT_FROM_EMAIL=noreply@gifts.example.com\nSECURE_SSL_REDIRECT=False   # if your reverse proxy handles HTTPS\n```\n\nGenerate a secret key:\n```bash\npython -c \"from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())\"\n```\n\n```bash\n# 2. Start\ndocker compose up -d\n\n# 3. Create an admin account\ndocker compose exec web python manage.py createsuperuser\n```\n\nThe app is now running on port `8000`. Point your reverse proxy at it.\n\n\u003e **Reverse proxy tip:** Set `SECURE_SSL_REDIRECT=False` in `.env` when nginx/Caddy/Traefik\n\u003e terminates TLS and forwards plain HTTP to gunicorn internally.\n\n---\n\n## Environment variables\n\n| Variable | Required | Description |\n|---|---|---|\n| `SECRET_KEY` | yes | Django secret key — random string, keep it secret |\n| `ALLOWED_HOSTS` | yes | Comma-separated hostnames, e.g. `gifts.example.com` |\n| `CSRF_TRUSTED_ORIGINS` | yes | Comma-separated origins with scheme, e.g. `https://gifts.example.com` |\n| `DB_PASSWORD` | yes | PostgreSQL password |\n| `DEFAULT_FROM_EMAIL` | | Sender address for invitation and notification emails |\n| `EMAIL_BACKEND` | | Set to SMTP backend + configure `EMAIL_HOST` etc. for real email |\n| `SECURE_SSL_REDIRECT` | | `False` if reverse proxy handles HTTPS (default `True`) |\n| `GOOGLE_CLIENT_ID` / `GOOGLE_CLIENT_SECRET` | | Optional: enables Google OAuth login |\n| `ADMIN_EMAIL` | | Admin contact for Django error emails |\n\nSee `.env.example` for the full list with comments.\n\n---\n\n## Local development\n\n```bash\npython -m venv .venv\nsource .venv/bin/activate      # or activate.fish\n\npip install -r requirements.txt\ncp .env.example .env           # defaults work out of the box for local dev\n\npython manage.py migrate\npython manage.py createsuperuser\npython manage.py runserver\n```\n\nOpen http://localhost:8000. Uses SQLite and the console email backend by default.\n\n### Docker dev (hot reload)\n\n```bash\ndocker compose -f docker-compose.yml -f docker-compose.dev.yml up\n```\n\n---\n\n## Tech stack\n\n- [Django](https://www.djangoproject.com/) + [webapptemplate](https://pypi.org/project/webapptemplate/) scaffold\n- PostgreSQL (production) / SQLite (development)\n- Tailwind CSS, HTMX, Alpine.js — no build step\n- Gunicorn, Docker Compose\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelda%2Fgiftarium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbelda%2Fgiftarium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelda%2Fgiftarium/lists"}