{"id":22492131,"url":"https://github.com/pratik-codes/dashlit","last_synced_at":"2025-08-03T00:31:25.959Z","repository":{"id":39905220,"uuid":"438623691","full_name":"pratik-codes/Dashlit","owner":"pratik-codes","description":"An open source productivity extension for you browser. Best way to manage your links, todo, customize you browser home screen, manage your meetings, mails and much more.","archived":false,"fork":false,"pushed_at":"2024-11-07T05:55:27.000Z","size":92109,"stargazers_count":32,"open_issues_count":8,"forks_count":7,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-11-07T06:32:46.284Z","etag":null,"topics":["chrome-exte","hacktoberfest","hacktoberfest-accepted","hacktoberfest2023-accepted","productivity","react","tailwindcss","typescript","vite"],"latest_commit_sha":null,"homepage":"https://dashlit.byarclabs.com","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/pratik-codes.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":"2021-12-15T12:36:22.000Z","updated_at":"2024-11-07T05:55:31.000Z","dependencies_parsed_at":"2024-11-07T06:37:13.037Z","dependency_job_id":null,"html_url":"https://github.com/pratik-codes/Dashlit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pratik-codes%2FDashlit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pratik-codes%2FDashlit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pratik-codes%2FDashlit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pratik-codes%2FDashlit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pratik-codes","download_url":"https://codeload.github.com/pratik-codes/Dashlit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228508029,"owners_count":17931263,"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":["chrome-exte","hacktoberfest","hacktoberfest-accepted","hacktoberfest2023-accepted","productivity","react","tailwindcss","typescript","vite"],"created_at":"2024-12-06T18:15:36.146Z","updated_at":"2024-12-06T18:15:36.854Z","avatar_url":"https://github.com/pratik-codes.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n![Dashlit Logo](https://github.com/pratik-codes/Dashlit/blob/master/apps/landing/public/logo-white.png)\n\n### Dashlit - [Demo Extension](https://demo.dashlit.com/)\n\n\u003c/div\u003e\n\n---\n\n**Dashlit**: An open-source productivity extension for your browser. It offers an efficient method to manage your links, to-dos, customize your browser's home screen, manage meetings, emails, and ensures rapid accessibility. Developed with fervour by [**Pratik**](https://twitter.com/pratikk_tiwari).\n\n---\n\n## Architecture and Folder Structure\n\nThe organizational scheme of the repository is delineated as follows:\n\n```plaintext\n.\n├── app/\n│   ├── extension\n│   └── landing\n├── packages/\n│   ├── ui\n│   └── utils\n├── package.json\n├── pnpm.lock\n├── turbo.json\n└── tsconfig.json\n```\n\n### Explanation\n\n**app/**: This directory constitutes the core application layers.\n\n**extension**: This sub-folder houses the codebase for the browser extension itself, incorporating logic, views, and related assets.\n**landing**: This is the landing page for the Dashlit application, responsible for the initial user interface.\n**packages/**: This directory is planned for modular development.\n\n**ui**: Currently empty, but intended for integrating Shadcn UI to create reusable UI components.\n\n**utils**: This folder is also empty at present, designated for utility functions that will be shared across the application.\n\npackage.json, pnpm.lock: These files manage project dependencies.\nturbo.json: Configuration file for TurboRepo.\ntsconfig.json: Configuration settings for TypeScript compiler.\n\n\u003cbr/\u003e\n\n## Contributions\n\nInterested in contributing? Follow the steps below to set up the development environment.\n\n### Pre-requisites\n\n1. **Clone the Repository**: Clone the repository locally onto your machine.\n\n   ```bash\n   git clone \u003crepository-link\u003e\n   ```\n\n2. **Firebase Backend**: This project uses Firebase as its backend. Create a Firebase project and populate the `.env` file located at the project root with the appropriate credentials.\n\n   Example of `.env` configuration:\n\n   ```env\n   # Firebase keys\n   VITE_FIREBASE_API_KEY=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_AUTH_DOMAIN=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_PROJECT_ID=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_STORAGE_BUCKET=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_MESSAGING_SENDER_ID=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_APP_ID=ADD_THE_VALUE_HERE\n   VITE_FIREBASE_MEASUREMENT_ID=ADD_THE_VALUE_HERE\n   ```\n\n### Installation\n\n3. **Turbo CLI**: Install the Turbo CLI globally as this project utilizes TurboRepo.\n\n   ```bash\n   npm install turbo --global\n   ```\n\n4. **Dependencies**: Run the following command to install all the required dependencies:\n\n   ```bash\n   pnpm install\n   ```\n\n### Execution\n\n5. **Development Server**: Start the development server.\n\n   ```bash\n   turbo dev\n   ```\n\n6. **Access**: Post successful execution, the extension application will be accessible at `http://localhost:5173`, and the landing page at `http://localhost:3000`.\n\n7. **build**: To build the extension and the landing page run `turbo build` and the output folder would be created, `dist` for the extension and `.next` for the landing page app. You can use this dist folder to import in the chrome browser in the extension section to test and use it locally.\n\nYou are all set to contribute!\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpratik-codes%2Fdashlit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpratik-codes%2Fdashlit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpratik-codes%2Fdashlit/lists"}