-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from takahashim/fix-doc-0-28-1
update DEVELOPMENT.md for 0.28.1
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ Dockerで環境を構築する際は、1.環境構築と2. 実行(ローカル | |
|
||
| アプリケーション名 | バージョン | | ||
|-------------------------------------------|--------| | ||
| [Ruby](https://www.ruby-lang.org/ja/) | 3.0.6 | | ||
| [Bundler](https://bundler.io/) | 2.2.33 | | ||
| [Ruby](https://www.ruby-lang.org/ja/) | 3.1.1 | | ||
| [Bundler](https://bundler.io/) | 2.3.7 | | ||
| [PostgreSQL](https://www.postgresql.org/) | 12 | | ||
|
||
### 1-1. 事前準備 | ||
|
@@ -20,16 +20,19 @@ Dockerで環境を構築する際は、1.環境構築と2. 実行(ローカル | |
## 2. 実行(ローカルバージョン) | ||
### 2.1 Rubyのインストール | ||
``` | ||
rbenv install 3.0.6 | ||
rbenv install 3.1.1 | ||
``` | ||
### 2.2 リポジトリをクローン | ||
``` | ||
git clone [email protected]:codeforjapan/decidim-cfj.git | ||
``` | ||
|
||
### 2.3 bundlerのインストール | ||
|
||
通常、Ruby 3.1.1ではbundler 2.3.7が標準でインストールされているはずですが、何かしらの事情でインストールされていない場合は改めてインストールしてください。 | ||
|
||
``` | ||
gem install bundler:2.2.33 | ||
gem install bundler:2.3.7 | ||
``` | ||
|
||
### 2.4 DBのユーザーとパスワードの設定 | ||
|