{"id":19341595,"url":"https://github.com/sectasy0/railed","last_synced_at":"2025-09-11T10:35:09.046Z","repository":{"id":218214191,"uuid":"745886591","full_name":"sectasy0/railed","owner":"sectasy0","description":"Ruby On Rails production-ready starter kit ","archived":false,"fork":false,"pushed_at":"2024-01-20T13:04:46.000Z","size":128,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-26T16:38:22.356Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/sectasy0.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":"2024-01-20T12:56:45.000Z","updated_at":"2024-03-05T13:53:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"30cf4574-1eb4-46e1-bc80-02bb9c801793","html_url":"https://github.com/sectasy0/railed","commit_stats":null,"previous_names":["sectasy0/railed"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sectasy0%2Frailed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sectasy0%2Frailed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sectasy0%2Frailed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sectasy0%2Frailed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sectasy0","download_url":"https://codeload.github.com/sectasy0/railed/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248639284,"owners_count":21137817,"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":[],"created_at":"2024-11-10T03:31:37.308Z","updated_at":"2025-04-12T22:28:37.410Z","avatar_url":"https://github.com/sectasy0.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Railed - Ruby On Rails production-ready starter kit 💎\n\n![Ruby](https://img.shields.io/badge/ruby%203.3-%23CC342D.svg?style=for-the-badge\u0026logo=ruby\u0026logoColor=white)\n![Rails](https://img.shields.io/badge/rails%207-%23CC0000.svg?style=for-the-badge\u0026logo=ruby-on-rails\u0026logoColor=white)\n![TailwindCSS](https://img.shields.io/badge/tailwindcss-%2338B2AC.svg?style=for-the-badge\u0026logo=tailwind-css\u0026logoColor=white)\n![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge\u0026logo=docker\u0026logoColor=white)\n![Nginx](https://img.shields.io/badge/nginx-%23009639.svg?style=for-the-badge\u0026logo=nginx\u0026logoColor=white)\n\nWelcome to Railed, a Ruby On Rails boilerplate project designed for production use. This boilerplate comes pre-configured with Nginx, HTTP/2, and QUIC (HTTP/3) support to ensure optimal performance and security. Additionally, Railed contains a carefully curated list of pre-installed must-have Rails gems, streamlining the development process for building robust and feature-rich applications.\n\nFor exact list of ruby gems installed please check `Gemfile`.\n\n\n## Features ✨:\n\n* ***Nginx with HTTP/2 and QUIC Support***: Industry-standard web server known for its high performance, stability, and efficient handling of static and dynamic content. Take advantage of HTTP/2 for faster communication and embrace the future of the web with QUIC, a next-generation transport layer protocol designed to enhance speed and security.\n\n* ***Docker and Docker-Compose***: Easily manage and deploy your application using Docker containers, with a separate docker-compose.yml file for each environment (development, testing, and production).\n\n* ***Stimulus and Turbo***: Leverage the power of Stimulus for lightweight and modern JavaScript controllers, and Turbo to enhance the user experience by enabling seamless, fast navigation between pages.\n\n* ***Tailwind CSS with Flowbite UI Components***: Utilize the flexibility and utility-first approach of Tailwind CSS, along with the Flowbite UI components, to expedite the styling process and ensure a modern, responsive design.\n\n# Setting things up 🛠️\nYou don't have to touch `Dockerfile` because all system libraries for gems are already installed unless you added some gems that requires install some system c libs or something.\n\n### Setting up application\n\n1. Generate new `master key` by simply running `bin/rails runner 'puts ActiveSupport::EncryptedFile.generate_key` and put this key into `.env`.\n2. Fill up things in `credentials.yml.enc` like in `config/credentials.yml.example`\n3. Open `.env` and fill rest of the things expect `DATABASE_HOST` and `REDIS_HOST` unless you know what you're doing.\n\n### Setting up database\n\n1. Open `init.sql` and fill the init script with user and password that you will refer later in you application. TODO: read `.env` in `init.sql` to keep everything in `.env`\n\nAfter that your app should run without any problems. If you experience any problems with this boilerplate please open an issue and describe everything, I'll try to help you out!\n\n### Nginx Configuration:\nThe Nginx configuration files are located in the `./proxy` directory. Adjust the settings according to your production environment. Replace the default localhost.crt and private.key files with your own SSL/TLS certificate and private key.\n\n### Run application\n\n```sh\ndocker-compose -f docker-compose.dev.yml up\n```\n\n### Run tests in development env\n```sh\ndocker-compose exec -e RAILS_ENV=test app bin/rspec\n```\n\n# Acknowledgments:\nSpecial thanks to the Ruby on Rails, Nginx, Stimulus, Turbo, Tailwind CSS, and Docker communities for their invaluable contributions.\n\nHappy coding with Railed! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsectasy0%2Frailed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsectasy0%2Frailed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsectasy0%2Frailed/lists"}