https://github.com/aakashjhawar/chat-app
A group chat web app using Ruby on Rails
https://github.com/aakashjhawar/chat-app
Last synced: about 2 months ago
JSON representation
A group chat web app using Ruby on Rails
- Host: GitHub
- URL: https://github.com/aakashjhawar/chat-app
- Owner: aakashjhawar
- License: mit
- Created: 2019-01-27T09:08:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-08T20:00:39.000Z (over 2 years ago)
- Last Synced: 2025-02-03T18:18:49.927Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 259 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# README
This is a Ruby on Rails web app in which user can chat in real-time built using the [Rails](http://rubyonrails.org) framework.
### Requirements
* Rails 5.2.2
* PostgreSQL### Running Locally
Make sure you have [Ruby](https://www.ruby-lang.org), [Bundler](http://bundler.io) installed.
```sh
git clone https://github.com/aakashjhawar/ChatApp.git #You can also clone your own fork
cd ChatApp
bundle install
rails db:create
rails db:create
rails s
```Your app should now be running on [localhost:3000](http://localhost:3000/).
## Deploying to Heroku
```
heroku create
git push heroku master
heroku run rake db:migrate
heroku open
```## Documentation
For more information about using Ruby on Heroku, see these Dev Center articles:
- [Ruby on Heroku](https://devcenter.heroku.com/categories/ruby)
- [Getting Started with Ruby on Heroku](https://devcenter.heroku.com/articles/getting-started-with-ruby)
- [Heroku Ruby Support](https://devcenter.heroku.com/articles/ruby-support)