https://github.com/hbrawnak/content-manager-in-rails
A blog application in Rails
https://github.com/hbrawnak/content-manager-in-rails
bootstrap ruby ruby-on-rails
Last synced: 2 months ago
JSON representation
A blog application in Rails
- Host: GitHub
- URL: https://github.com/hbrawnak/content-manager-in-rails
- Owner: hbrawnak
- Created: 2017-12-11T07:08:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-19T10:59:52.000Z (over 8 years ago)
- Last Synced: 2025-03-17T14:50:33.690Z (over 1 year ago)
- Topics: bootstrap, ruby, ruby-on-rails
- Language: Ruby
- Homepage: https://habijabi.herokuapp.com/
- Size: 208 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
Things you may want to cover:
* Ruby version 5.1
Packages Used:
* gem 'bootstrap', '~> 4.0.0.beta2.1'
* gem 'friendly_id', '~> 5.1.0'
* gem 'devise'
* gem 'will_paginate'
* gem 'acts-as-taggable-on', '~> 5.0'
This is Tiny Blog
by [Habibur Rahman](http://www.facebook.com/follow.hbrawnak).
## License
All source code in the [Ruby on Rails Tutorial](http://railstutorial.org/)
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
```