https://github.com/kelset/rails-actioncable-chat-test
small test for chat app in Rails
https://github.com/kelset/rails-actioncable-chat-test
Last synced: 10 months ago
JSON representation
small test for chat app in Rails
- Host: GitHub
- URL: https://github.com/kelset/rails-actioncable-chat-test
- Owner: kelset
- Created: 2016-12-12T09:04:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-15T14:20:39.000Z (over 9 years ago)
- Last Synced: 2025-07-31T20:16:29.664Z (10 months ago)
- Language: Ruby
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A sample Chat app
First test app to mess around with ActionCable
## How to
`cd` inside the folder and run `docker-compose up --build`
then `docker-compose exec website rails db:create db:migrate db:seed`
then `docker-compose exec website rails assets:precompile`
## Based on
- https://nickjanetakis.com/blog/dockerize-a-rails-5-postgres-redis-sidekiq-action-cable-app-with-docker-compose
- https://www.nopio.com/blog/rails-real-time-chat-application-part-1/
- https://www.nopio.com/blog/rails-chat-application-actioncable/
- https://www.youtube.com/watch?v=GBEDvF1_8B8
- http://stackoverflow.com/questions/35320791/how-to-use-actioncable-as-api
Huge shoutout to the authors!