Check out the Live Demo.
Secure your app with Devise authentication. Users can sign up, log in, and enjoy a personalized experience with a secure authentication system.
Create and edit rooms in real-time using Turbo Streams and Frames. Changes made to rooms are instantly reflected for all users, providing a seamless and dynamic user experience.
Add users to rooms in real-time using Turbo Streams. As new users join, everyone in the room is immediately updated, fostering collaboration and connectivity.
Engage in real-time conversations within rooms using Turbo Streams. Messages are instantly delivered to all participants, creating a responsive and interactive chat experience.
Edit and delete messages in real-time using Turbo Streams. Users can make changes to their messages, and the updates are reflected for everyone in the room without the need for page reloads.
Ensure a seamless user experience across various devices with a responsive design. Your app is crafted to adapt and provide an optimal display on desktops, tablets, and smartphones.
Enhance the visual appeal of your app with Tailwind CSS styling. Enjoy a customizable and utility-first approach to styling, making it easy to create a beautiful and consistent user interface.
Leverage the power of Stimulus for enhancing interactivity. With Stimulus controllers, your app can achieve dynamic and reactive behavior without compromising on simplicity.
Ensure scalability and reliability by deploying your app on Heroku. Utilize Heroku Postgres for a robust database solution and Heroku Redis for handling real-time updates efficiently.
- Use Turbo iOS to make demo app
- Use Turbo Android to make demo app
- Add Avatars
- Fix scroll on create message for realtime updates
- Add attachments to messages (images, videos, files, and audio)
- Redo responsive navigation to minimize instances in user_rooms
Ensure you have Ruby 3.2.2 and Rails 7.1.2 installed.
# Clone the repository
git clone https://github.com/your-username/your-app.git
# Navigate to the project directory
cd your-app
# Install dependencies
bundle install
# Set up the database
rails db:create db:migrate
# Start the server
rails server
Deploy to Heroku 🚀
You can deploy this Rails 7 Turbo and Stimulus app to Heroku in just a few steps.
- Make sure you have a Heroku account and the Heroku CLI installed.
-
Create a new Heroku App:
heroku create your-app-name
-
Configure Database and Redis:
Add Heroku Postgres and Heroku Redis addons to your app:
heroku addons:create heroku-postgresql heroku addons:create heroku-redis
Ensure your config/database.yml and config/cable.yml files are configured to use the Heroku Postgres and Heroku Redis addons.
-
Deploy to Heroku:
git push heroku main
-
Run Migrations:
heroku run rake db:migrate
-
Open Your App:
heroku open
Your Rails 7 Turbo and Stimulus app should now be deployed to Heroku. Make sure to replace your-app-name with a unique name for your Heroku app.
- If you're using any other addons or services, make sure to configure them on Heroku.
- Ensure your config/master.key is not included in version control to keep your credentials secure.