{"id":46457609,"url":"https://github.com/radicazz/bandland","last_synced_at":"2026-03-06T02:54:35.369Z","repository":{"id":332086265,"uuid":"1110812021","full_name":"radicazz/bandland","owner":"radicazz","description":"Modern band landing page with Punk Aesthetics","archived":false,"fork":false,"pushed_at":"2026-02-23T20:04:06.000Z","size":3157,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-24T01:57:38.894Z","etag":null,"topics":["docker","nextjs","podman","reactjs","typescript","vercel"],"latest_commit_sha":null,"homepage":"https://schmat.co.za","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/radicazz.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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-12-05T18:58:20.000Z","updated_at":"2026-02-23T20:04:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/radicazz/bandland","commit_stats":null,"previous_names":["radicazz/bandland"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/radicazz/bandland","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radicazz%2Fbandland","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radicazz%2Fbandland/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radicazz%2Fbandland/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radicazz%2Fbandland/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/radicazz","download_url":"https://codeload.github.com/radicazz/bandland/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/radicazz%2Fbandland/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30159987,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"online","status_checked_at":"2026-03-06T02:00:08.268Z","response_time":250,"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":["docker","nextjs","podman","reactjs","typescript","vercel"],"created_at":"2026-03-06T02:54:34.623Z","updated_at":"2026-03-06T02:54:35.358Z","avatar_url":"https://github.com/radicazz.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bandland\n\nModern band landing page with a dark monochrome aesthetic. Built with Next.js 16, React 19, Tailwind CSS 4, and TypeScript.\n\nDesign + theme rules live in `AGENTS.md`.\n\n## Quick start\n\n```bash\nnpm install\nnpm run dev\n```\n\nOr with pnpm:\n\n```bash\npnpm install\npnpm dev\n```\n\nOpen http://localhost:3000\n\n## Basic edits\n\n- `content/shows.json` — tour dates\n- `content/merch.json` — merch items\n- `src/config/site.ts` — band name, description, socials\n- `src/i18n/translations.ts` — UI copy + locales\n- `public/slideshow/` — hero slideshow images (optional)\n\n## Admin panel\n\nAdmin access lives at `/admin` and writes directly to the JSON content files.\nIn production, you can keep these files outside the repo by setting `CONTENT_DIR`.\n\nSetup:\n1. Copy `env.example` to `.env.local`\n2. Run `npm run setup-access` to generate `ADMIN_PASSWORD_HASH` + `AUTH_SECRET`\n3. Set `AUTH_URL` and `NEXT_PUBLIC_SITE_URL` (e.g. `http://localhost:3000`)\n4. Restart the dev server\n\nData written by the admin panel:\n- `content/shows.json`\n- `content/merch.json`\n- `content/admin-audit.json`\n- Backup snapshots in `content/.history/`\n\n## VPS deployment (recommended data layout)\n\nTo keep admin edits persistent while still deploying code updates, store content\nJSON outside the git repo and point the app to it.\n\n1. Create a data directory on the VPS\n\n   ```bash\n   sudo mkdir -p /var/lib/bandland/content\n   sudo chown -R \u003cservice-user\u003e:\u003cservice-user\u003e /var/lib/bandland/content\n   ```\n\n2. Copy your current content files once\n\n   ```bash\n   cp content/shows.json /var/lib/bandland/content/\n   cp content/merch.json /var/lib/bandland/content/\n   ```\n\n3. Set environment variables on the service\n\n   - `CONTENT_DIR=/var/lib/bandland/content`\n   - Optional: `CONTENT_HISTORY_DIR=/var/lib/bandland/content/.history`\n\n4. Deploy as usual (your existing deploy script still works)\n\n## Common scripts\n\n- `npm run build` / `npm run start`\n- `npm run lint` / `npm run typecheck`\n- `npm test`\n\n## Environment\n\nCopy `env.example` to `.env.local` and set:\n- `NEXT_PUBLIC_SITE_URL`\n- `ADMIN_PASSWORD_HASH`\n- `AUTH_SECRET`\n- `AUTH_URL`\n\n## Licensing\n\nThis project uses a **dual licensing model**:\n\n### Code License\nAll source code is licensed under the [MIT License](./LICENSE). This includes:\n- The Next.js application code\n- Components and utilities in `src/`\n- Configuration files\n- Content schemas and loaders\n\nYou're free to use, modify, and distribute the code according to the MIT terms.\n\n### Brand Assets License\nVisual assets in this repository are **NOT** included in the open-source license. This includes:\n- Files in `public/logos/`\n- Files in `public/slideshow/`\n- Album artwork, promotional images, and band photography\n\nThese assets are proprietary and remain under copyright. Any use, modification, or distribution requires explicit written permission. See [`LICENSE.ASSETS`](./LICENSE.ASSETS) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradicazz%2Fbandland","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fradicazz%2Fbandland","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fradicazz%2Fbandland/lists"}