{"id":41934551,"url":"https://github.com/idanieldrew/redact","last_synced_at":"2026-01-25T18:08:32.303Z","repository":{"id":37771249,"uuid":"464170606","full_name":"idanieldrew/redact","owner":"idanieldrew","description":"Redact is a place to write articles","archived":false,"fork":false,"pushed_at":"2023-10-21T15:05:12.000Z","size":6535,"stargazers_count":15,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2023-10-21T16:24:16.504Z","etag":null,"topics":["authentication","cache","docker","docker-compose","elasticsearch","kibana","laravel","message-broker","modular","nginx","php","php8","pusher","rabbitmq","redis","restful-api","sanctum","sendmail"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/idanieldrew.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}},"created_at":"2022-02-27T15:10:01.000Z","updated_at":"2023-07-30T04:01:06.000Z","dependencies_parsed_at":"2023-10-11T13:10:45.521Z","dependency_job_id":null,"html_url":"https://github.com/idanieldrew/redact","commit_stats":null,"previous_names":[],"tags_count":6,"template":null,"template_full_name":null,"purl":"pkg:github/idanieldrew/redact","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idanieldrew%2Fredact","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idanieldrew%2Fredact/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idanieldrew%2Fredact/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idanieldrew%2Fredact/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/idanieldrew","download_url":"https://codeload.github.com/idanieldrew/redact/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/idanieldrew%2Fredact/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28756432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T16:32:25.380Z","status":"ssl_error","status_checked_at":"2026-01-25T16:32:09.189Z","response_time":113,"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":["authentication","cache","docker","docker-compose","elasticsearch","kibana","laravel","message-broker","modular","nginx","php","php8","pusher","rabbitmq","redis","restful-api","sanctum","sendmail"],"created_at":"2026-01-25T18:08:31.871Z","updated_at":"2026-01-25T18:08:32.294Z","avatar_url":"https://github.com/idanieldrew.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Modular blog\n\n\u003cimg src=\"docs/images/logo.png\" alt=\"Mailu\"\u003e\n\n## About Redact\n\nRedact is built with php and laravel. Redact is a place to write articles. Redact is suitable for developers who want to\nlearn more about Laravel and know how to use technologies.\n\n* [Installation](#installation)\n    * [Docker](#docker)\n    * [Without Docker](#without-docker)\n\n* [Technology](#usage)\n    * [Horizon](#horizon)\n    * [Kibana](#kibana)\n\n## Installation\n\nIf you have docker,set up with it:\n\n### Docker\n\n```sh\ngit clone https://github.com/idanieldrew/redact\n\ncd modular-blog\n\n# set environment\ncopy .env.example .env\n\n# Start docker in os\ndocker-compose up --build\n```\n\n### Without Docker\n\n```sh\ngit clone https://github.com/idanieldrew/redact\n\ncd modular-blog\n\n# set environment\ncopy .env.example .env\n\n# install composer\ncomposer install\n```\n\n## Technology\n\n### Horizon\n\nIn docker-compose,I used RabbitMQ for queue driver for laravel,if you want use redis,pay attention environment.\nFirst,Running horizon\n\n```\nphp artisan horizon\n```\n\nand then open this url:\n\n```\nhttp://127.0.0.1/horizon/dashboard\n```\n\n### Kibana\n\nIn Kibana,I stored data and also stored logs with Filebeat and then transform with elastic\n\n```\nhttp://localhost:5601\n```\n\nand then create dashboards and also run queue driver for transform post model to elastic.\n\n```\nphp artisan queue:work //Pay attension queue driver\n```\n\n## Tests\n\n```\ndocker-compose exec redact_application php artisan test\n```\n\n## Fake data\n\n```sh\ndocker-compose exec weblog_application php artisan migrate:fresh --seed\n```\n\n## Database Description\n\n#### Laravel is flexible in determining database but i performed\n\n- PostgresQL for main database\n- Redis for cache database\n- Elasticsearch for search posts(blogs)\n\n## Webserver Description\n\n- Nginx,because use php-fpm\n\n## Other Description\n\n- Use Kibana for dashboard and management elastic\n- Has continuous integration(GitHub actions)\n\n## Tips for developers\n\n- This project is modular,therefor it's content in \"Modules\" folder\n- I tried to ensure all services or modules have tests and their coverage is close to 100%,but you can also help to\n  increase coverage tests\n- For language and translatable,I make a custom module(Lang).I got help\n  form [spatie package](https://github.com/spatie/laravel-translatable).this package gives you many possibilities,but i\n  don't need all this.That's why i made this module.\n- Similarly, For Roles \u0026 permissions,I make a custom module(Role).I got help\n  form [spatie package](https://github.com/spatie/laravel-permission). This package gives you many possibilities,but i\n  don't need all this.That's why i made this module.\n- Use cache for queries(redis)\n- I tried to clean code so use Solid and Design patterns. If you have an idea to make the code cleaner,do a pull\n  request.\n\n## Pull Requests\n\nThank you for investing your time in contributing to our project.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidanieldrew%2Fredact","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fidanieldrew%2Fredact","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fidanieldrew%2Fredact/lists"}