{"id":34497384,"url":"https://github.com/renderghost/lanyards","last_synced_at":"2026-01-23T20:48:37.531Z","repository":{"id":324781115,"uuid":"1096264285","full_name":"renderghost/lanyards","owner":"renderghost","description":"Lanyards is a dedicated profile for researchers, built on the AT Protocol","archived":false,"fork":false,"pushed_at":"2025-12-11T20:52:08.000Z","size":1487,"stargazers_count":12,"open_issues_count":15,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-31T17:52:38.960Z","etag":null,"topics":["atproto","atprotocol","atscience","linkinbio","linkinbio-alternative","linktree-alternative","orcid","orcid-alternative","researcher-profiles"],"latest_commit_sha":null,"homepage":"http://lanyards.app","language":"TypeScript","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/renderghost.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"ko_fi":"renderghost","buy_me_a_coffee":"renderghost"}},"created_at":"2025-11-14T07:05:38.000Z","updated_at":"2025-12-31T15:49:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/renderghost/lanyards","commit_stats":null,"previous_names":["renderghost/lanyards"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/renderghost/lanyards","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renderghost%2Flanyards","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renderghost%2Flanyards/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renderghost%2Flanyards/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renderghost%2Flanyards/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/renderghost","download_url":"https://codeload.github.com/renderghost/lanyards/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/renderghost%2Flanyards/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28699920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T17:25:48.045Z","status":"ssl_error","status_checked_at":"2026-01-23T17:25:47.153Z","response_time":59,"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":["atproto","atprotocol","atscience","linkinbio","linkinbio-alternative","linktree-alternative","orcid","orcid-alternative","researcher-profiles"],"created_at":"2025-12-24T01:00:50.343Z","updated_at":"2026-01-23T20:48:37.525Z","avatar_url":"https://github.com/renderghost.png","language":"TypeScript","funding_links":["https://ko-fi.com/renderghost","https://buymeacoffee.com/renderghost"],"categories":["TypeScript"],"sub_categories":[],"readme":"# Lanyards 🧑‍🚀\n\n**One link to make your research life easier to share!** Papers, talks, affiliations, socials, whatever... Easy, free, decentralised, and built on the AT Protocol.\n\n\u003e [!NOTE]\n\u003e The complete documentation is available on the [GitHub Wiki](https://github.com/renderghost/lanyards/wiki)\n\n## Features\n\n- **Account Creation**: Sign in with your Bluesky account using OAuth\n- **Researcher Profile**: Mobile-first profile display with QR code sharing\n- **Profile Management**: Manage honorifics, location, affiliations, and more\n- **Social Networks**: Link to Twitter, LinkedIn, ResearchGate, Google Scholar, and Semble\n- **Scholarly Contributions**: Add research using DOIs\n- **Academic Events**: Track conference presentations and symposiums\n\n## Technology Stack\n\n- Next.js\n- TypeScript\n- Tailwind CSS\n- AT Protocol (@atproto/*)\n\n## Getting Started\n\n### 1. Install Dependencies\n\n```bash\nnpm install\n```\n\n### 2. Configure Environment Variables (Optional)\n\nCopy the example environment file:\n```bash\ncp .env.example .env\n```\n\nEdit `.env` if you need to customize settings:\n```env\n# Set authentication method (app_password for development, oauth for production)\nAUTH_METHOD=app_password\n\n# Application URL\nNEXT_PUBLIC_APP_URL=http://localhost:3000\n\n# PDS Configuration (change if using a different PDS)\nPDS_URL=https://bsky.social\n```\n\n### 3. Run the Development Server\n\n```bash\nnpm run dev\n```\n\n### 4. Sign In\n\nVisit [http://localhost:3000](http://localhost:3000) and click \"Sign In\". Enter your Bluesky handle and app password.\n\n#### Creating a Bluesky App Password\n\n1. Go to [https://bsky.app/settings/app-passwords](https://bsky.app/settings/app-passwords)\n2. Click \"Add App Password\"\n3. Give it a name (e.g., \"Lanyards\")\n4. Copy the generated password and use it to sign in\n\n## Authentication\n\n\u003c!-- 'Lanyards' supports two authentication methods: --\u003e\n\n### App Password (Recommended for Development)\n- **Pros**: Simple setup, works immediately, no OAuth configuration needed\n- **Cons**: Users must create an app password from Bluesky settings\n- **Use for**: Local development and testing\n- **Configuration**: Set `AUTH_METHOD=app_password` in `.env`\n\n\u003c!-- ### OAuth (Production)\n- **Pros**: Multi-user support, secure authorization flow, standard OAuth experience\n- **Cons**: Requires OAuth client setup and configuration\n- **Use for**: Production deployment\n- **Configuration**: Set `AUTH_METHOD=oauth` in `.env` --\u003e\n\n\u003c!-- ### Switching Between Methods\n\nChange the `AUTH_METHOD` value in your `.env` file and restart the development server:\n\n```env\n# For App Password\nAUTH_METHOD=app_password\n\n# For OAuth\nAUTH_METHOD=oauth\n``` --\u003e\n\n## Development Commands\n\n- `npm run build` - Generate lexicons and build for production\n- `npm run dev` - Generate lexicons and start development server\n- `npm run format` - Format code with Prettier\n- `npm run lex:gen` - Generate TypeScript types from lexicon schemas\n- `npm run lex:watch` - Watch lexicon schemas and regenerate types on changes\n- `npm run lint:fix` - Run ESLint and automatically fix issues\n- `npm run lint` - Run ESLint\n- `npm run start` - Start production server\n\n## Next Steps\n\nOnce authenticated, you can:\n1. View your dashboard at `/dashboard`\n2. Add affiliations, publications, and events\n3. Configure your profile settings\n4. View your public profile at `/{your-handle}`\n\n## Troubleshooting\n\n### Authentication fails\n- Verify your app password is correct (no typos, copied fully)\n- Make sure your Bluesky account is active\n- Check that `PDS_URL` is set to `https://bsky.social` (or your PDS URL)\n- Try creating a new app password\n\n### Can't access dashboard\n- Make sure you're signed in (check for session cookie)\n- Try clearing cookies and signing in again\n- Check the browser console for errors\n\n### Public profiles not loading\n- Check the browser console for errors\n- Ensure the handle is correct (e.g., `alice.bsky.social`)\n- Verify the user has created a Lanyards profile\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenderghost%2Flanyards","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frenderghost%2Flanyards","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frenderghost%2Flanyards/lists"}