{"id":29797587,"url":"https://github.com/holasoymas/writehub","last_synced_at":"2026-05-13T12:35:23.951Z","repository":{"id":303761233,"uuid":"1007704235","full_name":"holasoymas/writehub","owner":"holasoymas","description":"A medium clone blogging app","archived":false,"fork":false,"pushed_at":"2026-03-08T09:38:29.000Z","size":408,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-08T13:54:58.731Z","etag":null,"topics":["block-style","blogging-platform","editorjs","laravel","medium-clone"],"latest_commit_sha":null,"homepage":"https://writehub.maheshc.me","language":"Blade","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/holasoymas.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":null,"dco":null,"cla":null}},"created_at":"2025-06-24T12:00:56.000Z","updated_at":"2026-03-08T09:38:33.000Z","dependencies_parsed_at":"2025-08-19T05:27:17.260Z","dependency_job_id":"40d74b0a-b608-457c-8de8-62d7b487a95a","html_url":"https://github.com/holasoymas/writehub","commit_stats":null,"previous_names":["holasoymas/writehub"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/holasoymas/writehub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holasoymas%2Fwritehub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holasoymas%2Fwritehub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holasoymas%2Fwritehub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holasoymas%2Fwritehub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/holasoymas","download_url":"https://codeload.github.com/holasoymas/writehub/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/holasoymas%2Fwritehub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32983032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T11:31:52.688Z","status":"ssl_error","status_checked_at":"2026-05-13T11:31:52.072Z","response_time":115,"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":["block-style","blogging-platform","editorjs","laravel","medium-clone"],"created_at":"2025-07-28T06:14:04.719Z","updated_at":"2026-05-13T12:35:23.929Z","avatar_url":"https://github.com/holasoymas.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://res.cloudinary.com/dgy9djne0/image/upload/v1756300082/logo-cropped_vjmkfm.svg\" alt=\"Writehub Logo\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/holasoymas/writehub/actions/workflows/deploy.yaml\"\u003e\n    \u003cimg src=\"https://github.com/holasoymas/writehub/actions/workflows/deploy.yaml/badge.svg\" alt=\"CI\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.php.net/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/PHP-8.2-blue\" alt=\"PHP\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://laravel.com/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Laravel-12-red\" alt=\"Laravel\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/holasoymas/writehub/blob/main/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/License-MIT-green\" alt=\"License\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## 📖 Project Overview\n**WriteHub** is a Medium-like blogging platform built with Laravel. Users can create blogs, like and comment on posts, and interact with other bloggers. Admins can manage content and users.  \n\n---\n\n## 🛠 Features\n\n- User authentication (login/register)  \n- Create, edit, delete blogs  \n- Like and comment on posts  \n- Responsive design  \n\n## 💻 Getting Started (Local Development)\n\n### 1. Clone the repository\n```bash\ngit clone https://github.com/holasoymas/writehub.git\ncd writehub\n```\n\n### 2. Install Dependencies\n```bash\ncomposer install\nnpm install      # or pnpm install / yarn install\n```\n\n### 3. Environment setup\n\n- copy `.env.example` to `.env` \n\n```bash\ncp .env.exmaple .env\n```\n- Update database credentials and other config in `.env`\n\n### 4. Generate app key\n```bash\nphp artisan key:generate\n```\n\n### 5. Run migration and seeders\n```bash\nphp artisan migrate --seed\n```\n\n### 6. Compile assets\n```bash\nnpm run dev      # or pnpm/yarn run dev\n```\n\n### 7. Serve the application\n```bash\nphp artisan serve\n```\n- Open [http://127.0.0.1:8000](http://127.0.0.1:8000) in your browser\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fholasoymas%2Fwritehub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fholasoymas%2Fwritehub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fholasoymas%2Fwritehub/lists"}