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

https://github.com/o-ga09/ruby-backend-api

初めてRubyをさわながらAPIを作る
https://github.com/o-ga09/ruby-backend-api

api backend rails ruby

Last synced: 2 months ago
JSON representation

初めてRubyをさわながらAPIを作る

Awesome Lists containing this project

README

          

# ruby-backend-api
初めてRubyをさわながらAPIを作る

## 🎉環境構築

## ✅ 前提条件

```bsh
$ ruby --version
ruby 3.2.2 (2023-03-30 revision e51014f9c0) [arm64-darwin23]

$ rails --version
Rails 7.1.3.3
```

```bash
$ gem install rail
$ rails new [アプリの名前]
# 以下が出力されれば成功
# Bundle complete! 14 Gemfile dependencies, 82 gems now installed.
# Use `bundle info [gemname]` to see where a bundled gem is installed.
```
## データベースの設定

```yaml:config/database.yml

```