https://github.com/maufa42/chat-app
https://github.com/maufa42/chat-app
rails ruby
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maufa42/chat-app
- Owner: Maufa42
- Created: 2022-10-18T16:06:33.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-27T06:12:50.000Z (over 3 years ago)
- Last Synced: 2025-06-05T22:41:48.991Z (about 1 year ago)
- Topics: rails, ruby
- Language: Ruby
- Homepage: https://fullerf.herokuapp.com/
- Size: 13 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chat-app
##### Prerequisites
The setups steps expect following tools installed on the system.
- Github
- Ruby [3.1.0](https://github.com/organization/project-name/blob/master/.ruby-version#L1)
- Rails [7.0.1](https://github.com/organization/project-name/blob/master/Gemfile#L12)
##### 1. Check out the repository
```bash
git clone https://github.com/Maufa42/chat-app.git
```
##### 2. Create database.yml file
Copy the sample database.yml file and edit the database configuration as required.
```bash
cp config/database.yml.sample config/database.yml
```
##### 3. Create and setup the database
Run the following commands to create and setup the database.
```ruby
bundle exec rake db:create
bundle exec rake db:setup
```
##### 4. Start the Rails server
You can start the rails server using the command given below.
```ruby
bundle exec rails s
```
And now you can visit the site with the URL http://localhost:3000