This is a simple real-time chat application built with Ruby on Rails. It uses PostgreSQL for database, Devise with authentication, Pundit for authorization, ActionCable for real-time messaging and TailwindCSS for styling.
- User Authentication
- Chat Rooms
- Real-Time Messaging
- Authorization
- Flash Messages
- Create a folder and open it with terminal.
git clone https://gitlab.com/sametpolat7/chat_app.git .- Install dependencies
bundle install- Set up the database
rails db:create
rails db:migrateNote: Ensure your config/database.yml is correctly configured.
- Start the Rails server
rails server