An open API service indexing awesome lists of open source software.

https://github.com/mujadded/twitter_app

a sample twitter app with ruby on rails
https://github.com/mujadded/twitter_app

Last synced: over 1 year ago
JSON representation

a sample twitter app with ruby on rails

Awesome Lists containing this project

README

          

# Ruby on Rails Sample Twitter application

This is the sample twitter application for Rails experiments

## License

All source code in the application is available jointly under the MIT license and
the Beerware License. See [LICENSE.md](LICENSE.md) for details

## Getting Started

To get started with the app, clone the repo and then install the needed gems:
```
$ bundle install --without production
```
Next, migrate the database:
```
$ rails db:migrate
```
Finally, run the test suite to verify that everything is working correctly:
```
$ rails test
```
If the test suite passes, you'll be ready to run the app in a local server:
```
$ rails server
```
Thank you