Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alvinometric/rails-basic-blog

The Most Basic Blog app, made with Ruby on Rails 7
https://github.com/alvinometric/rails-basic-blog

Last synced: about 1 month ago
JSON representation

The Most Basic Blog app, made with Ruby on Rails 7

Awesome Lists containing this project

README

        

# rails-basic-blog

The Most Basic Blog app, made with Ruby on Rails 7.

## Getting Started

```sh
git clone https://github.com/alvinometric/rails-basic-blog.git
cd rails-basic-blog
```

### Install dependencies

```sh
bundle install
```

### Setup DB

(SQLite, no additional dependencies required.)

Run the migration

```sh
rails db:migrate
```

Seed the DB

```sh
rails db:seed
```

### Run the server

```sh
rails server
```