{"id":17570940,"url":"https://github.com/aachourmohamed/blog-rails","last_synced_at":"2026-01-20T02:47:54.190Z","repository":{"id":114026562,"uuid":"554030006","full_name":"AACHOURMOHAMED/blog-rails","owner":"AACHOURMOHAMED","description":"bolg-rails will be a classic example of a blog website. This will be a fully functional website that will show the list of posts and empower readers to interact with them by adding comments and liking posts.","archived":false,"fork":false,"pushed_at":"2022-11-04T14:39:34.000Z","size":6439,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-04-06T22:43:05.217Z","etag":null,"topics":["gem","linter","postgresql","ruby","ruby-on-rails"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/AACHOURMOHAMED.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":"2022-10-19T06:18:20.000Z","updated_at":"2024-01-13T21:22:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"a8b8b3af-2736-4457-963a-819b772fcf4b","html_url":"https://github.com/AACHOURMOHAMED/blog-rails","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"AACHOURMOHAMED/readme-template","purl":"pkg:github/AACHOURMOHAMED/blog-rails","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AACHOURMOHAMED%2Fblog-rails","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AACHOURMOHAMED%2Fblog-rails/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AACHOURMOHAMED%2Fblog-rails/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AACHOURMOHAMED%2Fblog-rails/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AACHOURMOHAMED","download_url":"https://codeload.github.com/AACHOURMOHAMED/blog-rails/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AACHOURMOHAMED%2Fblog-rails/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28594958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":["gem","linter","postgresql","ruby","ruby-on-rails"],"created_at":"2024-10-21T18:04:35.602Z","updated_at":"2026-01-20T02:47:54.170Z","avatar_url":"https://github.com/AACHOURMOHAMED.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://img.shields.io/badge/Microverse-blueviolet)\n\n# Blog rails\n\nThe Blog rails app will be a classic example of a blog website. This will be a fully functional website that will show the list of posts and empower readers to interact with them by adding comments and liking posts.\n\n## Built With\n\n- Ruby on Rails\n\n## Live Preview\n### [Live Demo]()\n\n## Additional Tools\n\n- rubocop\n- stylelint\n- Ruby Gems\n\n## Versions\n- Ruby  ~3.1.2\n- PostgreSQL  ~14.0\n- Node.js  ~16.17.0\n- Yarn  ~1.22.19\n\n## `Getting Started`\n\nTo get a local copy of this project:\n\nClone this repository or download the Zip folder:\n```\n$ git clone git@github.com:AACHOURMOHAMED/blog-rails.git\n```\nThen:\n```\n$ cd blog-rails\n\n$ gem install bundler\n\n$ bundle install\n```\n\nTo start App:\n```\n$ rails server\n```\n\nTo view on browser:\n```\nhttp://localhost:3000\n```\n\n## `Database creation`\n\nCreate a Postgres user:\n```\n$ su - postgres\n```\n\nAfter that access Postgres:\n```\npsql\n```\n\nThen create a user (or a “role”, as Postgres calls it):\n```\nCREATE ROLE rubyonrails WITH CREATEDB LOGIN PASSWORD '1234';\n```\n\nInitialize the database:\n```\n$ bin/rails db:setup\n```\n\nMigrate the database:\n```\n$ bin/rails db:create\n```\n\n## `Tests`\n\n### Running specs:\nDefault: Run all spec files (i.e., those matching spec/**/*_spec.rb):\n```\n$ bundle exec rspec\n```\nRun all spec files in a single directory (recursively):\n```\n$ bundle exec rspec spec/models\n```\nRun a single spec file:\n```\n$ bundle exec rspec spec/controllers/accounts_controller_spec.rb\n```\n\nRun a single example from a spec file (by line number):\n```\n$ bundle exec rspec spec/controllers/accounts_controller_spec.rb:8\n```\n\nSee all options for running specs:\n```\n$ bundle exec rspec --help\n```\n\n### rails tests:\n\n```\n$ bin/rails test\n```\n\n### To track linter errors locally follow these steps:\n\nTrack Ruby linter errors run:\n```\n$ rubocop\n```\nTo auto-correct correctable Rubocop offenses run:\n```\n$ rubocop --auto-correct-all | rubocop -A\n```\n\n## `Authors`\n\n👤 **Aachour Mohamed**\n\n- GitHub: [@AACHOURMOHAMED](https://github.com/AACHOURMOHAMED)\n- LinkedIn: [LinkedIn]()\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome!\n\nFeel free to check the [issues page](https://github.com/AACHOURMOHAMED/blog-rails/issues).\n\n## Show your support\n\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n\n- This project is part module 5 in the Microverse study program.\n- Thanks to the Microverse team for the great curriculum.\n- Thanks to Code Reviewers for the insightful feedback.\n- A great thanks to My coding partners, morning session team, and standup team Partners for their contributions.\n\n## 📝 License\n\nThis project is [MIT](./MIT.md) licensed.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faachourmohamed%2Fblog-rails","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faachourmohamed%2Fblog-rails","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faachourmohamed%2Fblog-rails/lists"}