{"id":28059831,"url":"https://github.com/nafeeur10/linker","last_synced_at":"2026-04-14T19:32:18.076Z","repository":{"id":220680796,"uuid":"750793186","full_name":"nafeeur10/Linker","owner":"nafeeur10","description":"Link Harvester is a simple app that collects links from users. Any user can submit links that are validated and stored by the application. Users can see the submitted (links/domains) and search, and sort those data. The results are displayed in a paginated table.","archived":false,"fork":false,"pushed_at":"2024-02-03T15:00:36.000Z","size":413,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-12T08:26:35.151Z","etag":null,"topics":["alpinejs","docker","docker-compose","laravel","mysql","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/nafeeur10.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,"zenodo":null}},"created_at":"2024-01-31T10:30:32.000Z","updated_at":"2024-02-03T14:50:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"8d515adb-8e61-4705-80f0-e9798d7457d2","html_url":"https://github.com/nafeeur10/Linker","commit_stats":null,"previous_names":["nafeeur10/linker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nafeeur10/Linker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nafeeur10%2FLinker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nafeeur10%2FLinker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nafeeur10%2FLinker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nafeeur10%2FLinker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nafeeur10","download_url":"https://codeload.github.com/nafeeur10/Linker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nafeeur10%2FLinker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31812968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"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":["alpinejs","docker","docker-compose","laravel","mysql","tailwindcss"],"created_at":"2025-05-12T08:26:33.840Z","updated_at":"2026-04-14T19:32:18.058Z","avatar_url":"https://github.com/nafeeur10.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://github.com/nafeeur10\" target=\"_blank\"\u003e\u003cimg width=\"80\" height=\"80\" src=\"https://img.icons8.com/officel/80/harvester.png\" alt=\"harvester\"/\u003e\u003c/a\u003e\u003c/p\u003e\n\n\n## Background of Link Harvester\n\nLink Harvester is a simple app that collects links from users. Any user can submit links that are\nvalidated and stored by the application. Users can see the submitted (links/domains) and\nsearch, and sort those data. The results are displayed in a paginated table.\n\n## Technology Used\n\n- **[Framework: Laravel](https://laravel.com/)**\n- **[Front End: AlpineJS](https://alpinejs.dev/)**\n- **[Docker](https://www.docker.com/)**\n- **[Database: MySQL](https://mysql.com)**\n- **[Cache: Redis](https://redis.io/)**\n- **[Webserver: nginx](https://www.nginx.com/)**\n\n## Install Docker Engine on Ubuntu\n\nMy Docker Version **25.0.0**. To Install run these commands:\n\n```\n# Add Docker's official GPG key:\nsudo apt-get update\nsudo apt-get install ca-certificates curl\nsudo install -m 0755 -d /etc/apt/keyrings\nsudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc\nsudo chmod a+r /etc/apt/keyrings/docker.asc\n\n# Add the repository to Apt sources:\necho \\\n  \"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \\\n  $(. /etc/os-release \u0026\u0026 echo \"$VERSION_CODENAME\") stable\" | \\\n  sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null\nsudo apt-get update\n\nsudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin\n```\n\n## Install Docker-Compose on Ubuntu\n\nMy Docker Compose version **v2.24.2**. Remove previous version if you are using any version before 2.24.2. \n```\nsudo apt remove docker-compose\n```\n\nTo Install run these commands:\n\n```\nsudo curl -SL https://github.com/docker/compose/releases/download/v2.24.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose \nsudo chmod +x /usr/local/bin/docker-compose\n```\nTo check the version:\n\n```\ndocker-compose --version\n```\n\n## Setup Guideline\n\n1. `git clone https://github.com/nafeeur10/Linker.git`\n2. `docker-compose up --build -d`\n3. Go to the docker exec with command `docker-compose exec php bash`\n4. Give permission (it could miss) `chmod 777 -R .`\n5. `composer install`\n6. `npm install`\n7. Set your database in `.env` file. \n ```DB_CONNECTION=mysql\n    DB_HOST=mysql\n    DB_PORT=3306\n    DB_DATABASE=links\n    DB_USERNAME=root\n    DB_PASSWORD=NrR@6307001\n```\n8. Set your Redis Environment \n ```EDIS_CLIENT=predis\n    CACHE_DRIVER=redis\n    SESSION_DRIVER=redis\n    QUEUE_CONNECTION=redis\n```\n9. Run the migration `php artisan migrate`\n10. Run the queue: `php artisan queue:work`\n\n## Browse Link\n\n```\nhttp://localhost:8001\n```\n\n## Testing\n\nWrote unit testing for Helper function `getMainDomain()`. Added three test cases. All are passed. \n\n## Video of Assignment\n\nhttps://www.loom.com/share/ff02f8b8b4124bc190ec3f510a351b89?sid=c8ac9d2a-2f13-4fff-ae3c-495eb69481f8","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnafeeur10%2Flinker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnafeeur10%2Flinker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnafeeur10%2Flinker/lists"}