Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alvinometric/rails-basic-blog
- Owner: alvinometric
- License: mit
- Created: 2024-08-01T21:18:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-23T14:06:13.000Z (3 months ago)
- Last Synced: 2024-08-23T15:43:57.839Z (3 months ago)
- Language: Ruby
- Size: 31.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```