{"id":18588128,"url":"https://github.com/peimelo/blogstrap","last_synced_at":"2025-06-16T07:06:37.007Z","repository":{"id":48793203,"uuid":"369813668","full_name":"peimelo/blogstrap","owner":"peimelo","description":"Building a blog using Bootstrap 5 with Ruby on Rails 6 in MVC pattern.","archived":false,"fork":false,"pushed_at":"2023-04-26T09:15:09.000Z","size":275,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T01:41:33.003Z","etag":null,"topics":["bootstrap","bootstrap5","devise","flyio","mvc","pundit","rails","rolify","rspec","ruby","ruby-on-rails","videocourse"],"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/peimelo.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-05-22T13:21:45.000Z","updated_at":"2024-07-19T15:20:27.000Z","dependencies_parsed_at":"2024-11-07T00:55:09.110Z","dependency_job_id":null,"html_url":"https://github.com/peimelo/blogstrap","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/peimelo/blogstrap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peimelo%2Fblogstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peimelo%2Fblogstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peimelo%2Fblogstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peimelo%2Fblogstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peimelo","download_url":"https://codeload.github.com/peimelo/blogstrap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peimelo%2Fblogstrap/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260116645,"owners_count":22961064,"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":["bootstrap","bootstrap5","devise","flyio","mvc","pundit","rails","rolify","rspec","ruby","ruby-on-rails","videocourse"],"created_at":"2024-11-07T00:44:47.485Z","updated_at":"2025-06-16T07:06:36.984Z","avatar_url":"https://github.com/peimelo.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blogstrap ![Tests](https://github.com/peimelo/blogstrap/actions/workflows/ruby.yml/badge.svg) [![Maintainability](https://api.codeclimate.com/v1/badges/6f77f0326f9a1e63038d/maintainability)](https://codeclimate.com/github/peimelo/blogstrap/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/6f77f0326f9a1e63038d/test_coverage)](https://codeclimate.com/github/peimelo/blogstrap/test_coverage)\n\nBuilding a blog using Bootstrap 5 with Ruby on Rails 6 in MVC pattern.\n\nThis repository is part of the [Curso Ruby on Rails 6 MVC](https://www.youtube.com/watch?v=rCwMlbpC7dU) on YouTube.\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eRuby version\u003c/td\u003e\n    \u003ctd\u003e\n      3.1.3\n    \u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eRails version\u003c/td\u003e\n    \u003ctd\u003e\n      6.1.7\n    \u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eDatabase\u003c/td\u003e\n    \u003ctd\u003e\n      SQLite3 (dev) / PostgreSQL (prod)\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Initial settings to run the project\n\n```bash\n# clone the project\ngit clone https://github.com/peimelo/blogstrap.git\n\n# enter the cloned directory\ncd blogstrap\n\n# install Ruby on Rails dependencies\nbundle install\n\n# install Node dependencies\nyarn install\n\n# create the development and test databases\nrails db:create\n\n# create the tables\nrails db:migrate\n\n# run the project\nrails s\n```\n\nOpen the browser at the address `http://localhost:3000`\n\n## Configuration for Production\n\n```bash\n# delete the config/credentials.yml.enc file\nrm config/credentials.yml.enc\n\n# run the command to create credentials and master key (replace 'code' if you don't use VS Code)\nEDITOR=\"code --wait\" bin/rails credentials:edit\n```\n\nAdd the information below in the [credentials](https://guides.rubyonrails.org/security.html#custom-credentials) to configure the email used by the Devise\ngem (replace with the values you want):\n\n```yml\n# ... your content above\n\n# GMail\ngmail:\n  mailer_sender: 'Sender \u003cyour@email.com\u003e'\n  user_name: your@email.com\n  password: your_password\n\n# or Zoho\nzoho:\n  mailer_sender: 'Sender \u003cyour@email.com\u003e'\n  user_name: your@email.com\n  password: your_password\n  domain: your_domain.com.br\n\nexception_recipients: exceptions@example.com\n```\n\nSave and close the `config/credentials.yml.enc` file.\n\nIf you want to use another email provider, change it in the file\n`config/environments/production.rb`.\n\nTo configure [Exception Notification](https://github.com/smartinez87/exception_notification), change it in the file\n`config/initializers/exception_notification.rb`.\n\nOpen the browser at the address [https://blogstrap.fly.dev/](https://blogstrap.fly.dev/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeimelo%2Fblogstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeimelo%2Fblogstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeimelo%2Fblogstrap/lists"}