https://github.com/charlesvelazquez/vblog
CodeVBlog Website
https://github.com/charlesvelazquez/vblog
blog rails rails-tutorial ruby
Last synced: 3 months ago
JSON representation
CodeVBlog Website
- Host: GitHub
- URL: https://github.com/charlesvelazquez/vblog
- Owner: CharlesVelazquez
- License: apache-2.0
- Created: 2018-02-22T17:06:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-15T16:42:32.000Z (over 7 years ago)
- Last Synced: 2025-02-13T13:53:00.309Z (4 months ago)
- Topics: blog, rails, rails-tutorial, ruby
- Language: Ruby
- Homepage: https://codevblog.herokuapp.com/
- Size: 151 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Code V Blog
This is a simple blog website I made by following the Rails tutorial:
[*Ruby on Rails Tutorial:
Learn Web Development with Rails*](http://www.railstutorial.org/)
by [Michael Hartl](http://www.michaelhartl.com/).## License
Please read the licence.md file for info
## 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
```Lastly, run the server and everything should be good
(*Note: Windows users may have issues with bundle installing bcrypt*)```
$ rails server
```