Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karume629/blog-application
A Simple Blog Application
https://github.com/karume629/blog-application
crud mvc rails-application
Last synced: 13 days ago
JSON representation
A Simple Blog Application
- Host: GitHub
- URL: https://github.com/karume629/blog-application
- Owner: karume629
- Created: 2022-04-18T04:51:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-18T06:44:15.000Z (over 2 years ago)
- Last Synced: 2024-11-02T17:06:57.255Z (13 days ago)
- Topics: crud, mvc, rails-application
- Language: Ruby
- Homepage: https://kateblogg.herokuapp.com/
- Size: 1.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blog Application
- A simple blog application illustrating the use of the `mvc` framework with `CRUD` capabilities.
On the application ,an anoymous user is able to `create` a new entry,`read`,`update` existing entries and `delete` content, one can create accompanied comments.
![Home Page](/app/assets/images/home_page.png?raw=true "Employee Data title")
## Application features
- Create an Article
- Read an Article form our Database
- Edit and Update an Article
- Delete an Article
- Create associated Comments on Articles## How to set-up the application
- Make sure you have configured Ruby and Rails correctly in your machine
```bash
ruby -v
```
ruby 3.0 >```bash
rails -v
```Rails 7.0 >
- Clone the repository
```bash
https://github.com/karume629/Blog-Application.git
```- Run `bundle install`
- Create our database
```bash
rails db:reset
```- Start your server
```bash
rails s
```- You are free to clone and contribute to the Repo!.