Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dalvarez2596/hotwire-chat
Chat using hotwire turbo
https://github.com/dalvarez2596/hotwire-chat
Last synced: 3 days ago
JSON representation
Chat using hotwire turbo
- Host: GitHub
- URL: https://github.com/dalvarez2596/hotwire-chat
- Owner: dalvarez2596
- License: mit
- Created: 2024-10-17T01:26:17.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T02:00:57.000Z (3 months ago)
- Last Synced: 2024-11-08T13:14:41.911Z (about 2 months ago)
- Language: Ruby
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# README
This README documents the steps necessary to get the Chat application up and running. This application is built with Ruby on Rails and utilizes Hotwire for a dynamic user experience.
## Ruby Version
This application is built using Ruby version **3.2.2**.
## System Dependencies
Make sure you have the following installed:
- Ruby 3.2.2
- Rails 7.2.1## Configuration
1. Clone the repository:
```bash
git clone [email protected]:dalvarez2596/hotwire-chat.git
cd chat
```
2. Install the required gems:```bash
bundle install
```
3. Database CreationTo create the database, run:
```bash
rails db:create
```
4. Database InitializationTo set up the database with the necessary tables and seed data, run:
```bash
rails db:migrate
```5. Run the application :
```bash
rails s
```And go to http://localhost:3000/rooms to start creating rooms and chats :)
## Additional Notes
For more information on using Hotwire, refer to the official guide: [Hotwired.dev.](https://hotwired.dev/)