{"id":31674969,"url":"https://github.com/ssip001/rails-start","last_synced_at":"2026-04-07T08:01:35.672Z","repository":{"id":318261596,"uuid":"1069035101","full_name":"ssip001/rails-start","owner":"ssip001","description":"Start Rails in one command","archived":false,"fork":false,"pushed_at":"2025-10-06T04:52:20.000Z","size":14334,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-11T17:54:01.699Z","etag":null,"topics":["docker","docker-compose","elasticsearch","pgsql","rails","redis","ruby","sanitize","sanitizer","sidekiq","sphinx","whenever"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/ssip001.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","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-10-03T09:52:01.000Z","updated_at":"2025-10-06T04:52:24.000Z","dependencies_parsed_at":"2025-10-06T06:42:09.759Z","dependency_job_id":null,"html_url":"https://github.com/ssip001/rails-start","commit_stats":null,"previous_names":["ssip001/rails-start"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/ssip001/rails-start","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssip001%2Frails-start","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssip001%2Frails-start/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssip001%2Frails-start/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssip001%2Frails-start/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ssip001","download_url":"https://codeload.github.com/ssip001/rails-start/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ssip001%2Frails-start/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31504897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["docker","docker-compose","elasticsearch","pgsql","rails","redis","ruby","sanitize","sanitizer","sidekiq","sphinx","whenever"],"created_at":"2025-10-08T04:58:17.881Z","updated_at":"2026-04-07T08:01:35.656Z","avatar_url":"https://github.com/ssip001.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"./docs/images/rails-start-banner.jpg\" alt=\"Rails Start\" /\u003e\n\n# Rails Start!\n\n\"Rails Start\" is a starter kit for Ruby on Rails applications, designed to help developers quickly set up a new project with essential features and best practices.\n\nThis project is a perfect choice for:\n\n- **Enterprises** looking to standardize their Rails application setup.\n- **Freelancers and agencies** to kickstart client projects.\n- **Online education platforms** to start teaching Ruby on Rails.\n- **Individual developers** who want a solid foundation for their Rails applications.\n\n## Requirements\n\n- `Docker` and `Docker Compose` installed on your machine.\n- `git` installed (usually comes pre-installed on MacOS and Linux).\n- `make` utility installed (usually comes pre-installed on MacOS and Linux).\n- `WSL2` (For Windows users) with a Linux distribution (like Ubuntu) is recommended.\n\n## How to Use\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003e🪟 Windows Requirements (Click to expand)\u003c/strong\u003e\u003c/summary\u003e\n\n### Prerequisites for Windows Users\n\nBefore proceeding, Windows users need to set up WSL2:\n\n1. **Install WSL2 and Ubuntu** (if not installed yet):\n\n   Open `cmd` or `PowerShell` and run:\n\n   ```powershell\n   wsl --install\n   wsl --set-default-version 2\n   wsl --install -d Ubuntu\n   ```\n\n2. **Install make utility**:\n\n   Run `WSL` and install `make`:\n\n   ```bash\n   wsl\n   sudo apt-get install -y make\n   ```\n\n3. **Continue with the installation steps below** inside your WSL2 Ubuntu terminal.\n\n\u003c/details\u003e\n\n### Installation Steps\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/ssip001/rails-start.git\n   ```\n\n2. Navigate to the project directory:\n\n   ```bash\n   cd rails-start\n   ```\n\n3. Start the application:\n   ```bash\n   make rails-start\n   ```\n\nThat's it! Very simple!\n\nNow visit: `http://localhost:3000` in your browser.\n\n\u003cimg src=\"./docs/images/rails-start-2.png\" alt=\"Rails Start Welcome Page\" /\u003e\n\n## The Idea\n\nThis project uses power of `Docker` and `Makefiles` to automate the setup and management of a Rails application.\n\nThe `Makefile` commands abstract away the complexity of Docker commands, allowing developers to focus on coding rather than environment setup.\n\n`make rails-start` command does everything needed to get you started.\n\n## Project Status\n\nProject is being remastered to support Rails 8.0 and Ruby 3.3.\n\n- To use previous version use branch `rails7-startkit`.\n- https://github.com/ssip001/rails7-startkit/tree/RAILS_7_STARTKIT\n\n# License\n\n[MIT License. 2023-2025. Nazar](./LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssip001%2Frails-start","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssip001%2Frails-start","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssip001%2Frails-start/lists"}