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
- Host: GitHub
- URL: https://github.com/mujadded/twitter_app
- Owner: Mujadded
- Created: 2017-10-30T06:01:49.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-02T09:59:10.000Z (over 8 years ago)
- Last Synced: 2025-01-14T06:15:29.462Z (over 1 year ago)
- Language: Ruby
- Size: 53.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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