Skip to content

A simple blog on the Ruby on Rails framework.

Notifications You must be signed in to change notification settings

R-360-rn/rails-blog-sample

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rails Blog Sample

This repository contains a simple web application built with the Ruby on Rails web framework.

The project has the next base features:

  • Blog (with draft/publish/archive management of posts and tag filtering)
  • Single pages
  • Feedback page

Setting Up a Development Environment

  1. Create a Ruby 2.4.1 environment (e.g. via rbenv or RVM).
  2. Install required dependencies:
bundle install --binstubs
  1. Create a role with the 123456 password for PostgreSQL databases:
su - postgres
createuser -P -d railsblogsample
exit
  1. Create a database with schema and add initial data:
bin/rails db:setup
  1. Run the local server:
bin/rails server

Done! 🎉 Use [email protected] as the user email and 123456 as the password to log in to the admin panel.

About

A simple blog on the Ruby on Rails framework.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 59.8%
  • HTML 36.1%
  • CSS 2.4%
  • JavaScript 1.7%