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
bundle install --binstubs
- Create a role with the
123456
password for PostgreSQL databases:
su - postgres
createuser -P -d railsblogsample
exit
- Create a database with schema and add initial data:
bin/rails db:setup
- Run the local server:
bin/rails server
Done! 🎉 Use admin@example.com
as the user email and 123456
as the password to log in to the admin panel.