{"id":27120664,"url":"https://github.com/potlock/curate-feed-template","last_synced_at":"2025-04-07T10:07:14.049Z","repository":{"id":279439143,"uuid":"938179526","full_name":"PotLock/curate-feed-template","owner":"PotLock","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-12T04:21:23.000Z","size":1244,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T05:23:54.127Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://solweek-feed.vercel.app","language":"TypeScript","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/PotLock.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":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-24T14:47:52.000Z","updated_at":"2025-03-12T04:21:26.000Z","dependencies_parsed_at":"2025-02-25T15:44:26.037Z","dependency_job_id":"e411bbc4-375d-4add-b240-e153c967ea24","html_url":"https://github.com/PotLock/curate-feed-template","commit_stats":null,"previous_names":["jikugodwill/twitter-filtered-feed","potlock/curate-feed-template"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PotLock%2Fcurate-feed-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PotLock%2Fcurate-feed-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PotLock%2Fcurate-feed-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PotLock%2Fcurate-feed-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PotLock","download_url":"https://codeload.github.com/PotLock/curate-feed-template/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247631816,"owners_count":20970066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-04-07T10:07:13.546Z","updated_at":"2025-04-07T10:07:14.040Z","avatar_url":"https://github.com/PotLock.png","language":"TypeScript","readme":"# Twitter Filtered Feed\n\n## Setup and Installation\n\nTo run this project locally, you'll need [Node.js](https://nodejs.org) and [pnpm](https://pnpm.io) installed on your system.\n\n```sh\n# Install pnpm if you haven't already\nnpm install -g pnpm\n\n# Clone the repository\ngit clone \u003crepository-url\u003e\n\n# Navigate to project directory\ncd solana-digest\n\n# Install dependencies\npnpm install\n\n# Start development server\npnpm dev\n```\n\n## Tech Stack\n\n- Vite\n- TypeScript\n- React\n- shadcn-ui\n- Tailwind CSS\n\n## Development\n\nThe development server will start at `http://localhost:8080` by default. The app will automatically reload if you change any of the source files.\n\n```sh\npnpm dev\n```\n\n## Building for Production\n\n```sh\npnpm build\n```\n\n## Project Configuration Instructions\n\nThis project is designed to be easily configurable for different feeds, themes, and metadata. Follow the steps below to customize the application according to your needs.\n\n### 1. Configuration File\n\nThe main configuration settings are stored in the `src/config.ts` file. You can modify the following properties:\n\n```typescript\nconst config = {\n  appTitle: \"Your App Title\", // Title of your application\n  appDescription: \"A brief description of your app.\", // Description for SEO\n  keywords: \"keyword1, keyword2, keyword3\", // Keywords for SEO\n  author: \"Your Name\", // Author of the application\n  ogImage: \"URL to your image\", // Open Graph image URL\n  ogUrl: \"https://yourapp.com\", // Open Graph URL\n  colors: {\n    primary: \"#14F195\", // Primary color for the theme\n    secondary: \"#9945FF\", // Secondary color for the theme\n    background: \"#000000\", // Background color\n    text: \"#FFFFFF\", // Text color\n  },\n};\n```\n\n### 2. Using the Configuration\n\nThe configuration is accessible throughout the application using the `ConfigContext`. This allows you to use the configuration values in any component.\n\n#### Example Usage in a Component\n\nTo use the configuration in a component, import the `useConfig` hook:\n\n```typescript\nimport { useConfig } from \"../ConfigContext\";\n\nconst MyComponent = () =\u003e {\n  const config = useConfig(); // Get the config\n\n  return (\n    \u003cdiv style={{ backgroundColor: config.colors.background }}\u003e\n      \u003ch1 style={{ color: config.colors.text }}\u003e{config.appTitle}\u003c/h1\u003e\n      \u003cp\u003e{config.appDescription}\u003c/p\u003e\n    \u003c/div\u003e\n  );\n};\n```\n\n### 3. Updating Metadata\n\nThe metadata for the application is set in the `src/App.tsx` file using the `react-helmet` library. You can modify the metadata as follows:\n\n```typescript\n\u003cHelmet\u003e\n  \u003ctitle\u003e{config.appTitle}\u003c/title\u003e\n  \u003cmeta name=\"description\" content={config.appDescription} /\u003e\n  \u003cmeta name=\"keywords\" content={config.keywords} /\u003e\n  \u003cmeta name=\"author\" content={config.author} /\u003e\n  \u003cmeta property=\"og:title\" content={config.appTitle} /\u003e\n  \u003cmeta property=\"og:description\" content={config.appDescription} /\u003e\n  \u003cmeta property=\"og:image\" content={config.ogImage} /\u003e\n  \u003cmeta property=\"og:url\" content={config.ogUrl} /\u003e\n\u003c/Helmet\u003e\n```\n\n### 4. Theming\n\nYou can easily change the colors used in the application by modifying the `colors` object in the `src/config.ts` file. This will allow you to create different themes for your application.\n\n## Conclusion\n\nBy following these instructions, you can easily customize the application to fit your project's needs. Feel free to modify the configuration file to suit your requirements.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpotlock%2Fcurate-feed-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpotlock%2Fcurate-feed-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpotlock%2Fcurate-feed-template/lists"}