Skip to content

Commit a3d48ec

Browse files
committed
Getting-started.md 一通り
1 parent e7b955b commit a3d48ec

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

I-Introduction/Getting-started.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ Then you just need to type `rocketeer ignite`. You'll get asked a series of ques
5656
-->
5757

5858
[translation here]
59-
### ローカル環境
59+
### ローカル環境へ
6060

6161
<!--original
6262
### Locally
6363
-->
6464

6565
[translation here]
66-
66+
Rocketeerは、Composerで他のパッケージと同じようにインストールできます。
6767

6868
<!--original
6969
You can also install Rocketeer with Composer as any package :
@@ -75,24 +75,28 @@ $ php vendor/bin/rocketeer ignite
7575
```
7676

7777
[translation here]
78+
これだけです。下で説明する設定ファイルが、`yourapp/.rocketeer/` の下に作成されます。
7879

7980
<!--original
8081
And that's all, the configuration file referenced below will be created at `yourapp/.rocketeer/`.
8182
-->
8283

8384
[translation here]
85+
Rocketeerのコマンドにアクセスするには、`php vendor/bin/rocketeer`を使うか、これを`alias rocketeer=php vendor/bin/rocketeer`とエイリアスしておきます。ローカルのバイナリにいつでもアクセスできるように`vendor/bin`を_PATH_に追加しておくのでもよいでしょう。
8486

8587
<!--original
8688
Use `php vendor/bin/rocketeer` to access Rocketeer's commands or simply alias it : `alias rocketeer=php vendor/bin/rocketeer`. You can also add `vendor/bin` to your _PATH_ to always have local binaries accessible.
8789
-->
8890

8991
[translation here]
92+
### グローバル環境へ
9093

9194
<!--original
9295
### Globally
9396
-->
9497

9598
[translation here]
99+
すべての Composer パッケージと同じように、`global`を付与することで、Rocketeerをグローバル環境へインストールすることもできます。
96100

97101
<!--original
98102
As with all Composer packages, Rocketeer can also be installed as a global dependency by preprending `global` :
@@ -104,49 +108,60 @@ $ rocketeer ignite
104108
```
105109

106110
[translation here]
111+
## 設定
107112

108113
<!--original
109114
## Configuration
110115
-->
111116

112117
[translation here]
118+
Roketeerのほとんどの設定は、`.rocketeer`フォルダの中の設定ファイルで行います。
119+
設定ファイルには多くのオプションがあります。各オプションには説明が記載されていますのでコメントを注意して読んでください。
113120

114121
<!--original
115122
You'll do most of your configuration in Rocketeer's configuration files, in the `.rocketeer` folder.
116123
There are a lot of options in the configuration file, each is explained thoroughly so take your time to read the comments carefully.
117124
-->
118125

119126
[translation here]
127+
## Rocketeer を使う
120128

121129
<!--original
122130
## Using Rocketeer
123131
-->
124132

125133
[translation here]
134+
もし、アーカイブを使っている場合には、コマンドにアクセスするために、`php rocketeer.phar`と打ち込む必要があります。例ごとに`php rocketeer.phar deploy`というようにです。グローバルにインストールしている場合には、`rocketeer deploy`と打てます。
126135

127136
<!--original
128137
If you're using the archive, you'll need to hit `php rocketeer.phar` to access the commands, per example `php rocketeer.phar deploy` or if you installed it globally, `rocketeer deploy`.
129138
-->
130139

131140
[translation here]
141+
設定を終えたら、`php rocketeer.phar check`コマンドを実行することをおすすめします。これはサーバー上でいくつものコマンドを実行し、設定がアプリケーションを収容する準備が整っているかどうかをチェックします。
132142

133143
<!--original
134144
Once you're done with the configuration, it is recommended to run the `php rocketeer.phar check` command, it will run various commands on the server to check whether the latter is ready to receive your application.
135145
-->
136146

137147
[translation here]
148+
続いて、`php rocketeer.phar deploy`と打ち込むと、最初のリリースがリモートサーバーに作成されます。
149+
その後、新しいリリースを作成したら、同じコマンドを実行することで、アップデートができます。または単純にリポジトリと依存パッケージがアップデートされる`php rocketeer.phar update`を実行することでもアップデート可能です。
138150

139151
<!--original
140152
Then you can just hit `php rocketeer.phar deploy`. It will create an initial release on your remote server.
141153
Afterwards, to update it you can either run the same command again which will create an entirely new release, or simply do an `php rocketeer.phar update` which will update the repository and dependencies of your application.
142154
-->
143155

144156
[translation here]
157+
### フォルダ構成
145158

146159
<!--original
147160
### Folder organization
148161
-->
149162

163+
Rocketeer は、現在いるフォルダにある固有の設定ファイルを認識します。tasks.phpと、event.phpについても同様です。したがって以下のように構成するとよいでしょう。
164+
150165
[translation here]
151166

152167
<!--original

I-Introduction/Whats-Rocketeer.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[translation here]
2+
# Rocketeerとは?
23

34
<!--original
45
# What's Rocketeer ?
56
-->
67

78
[translation here]
9+
Rocketeer は、現代の開発者のための高速で簡単なデプロイツールです。過去、すでに *Capistrano* を使ったことがある人なら何をするものなのか要点はすでにわかっているので、この章は飛ばしてかまいません。それ以外の方はお付き合いください。
810

911
<!--original
1012
Rocketeer is a fast and easy deploying tool for modern developers. If you've already used *Capistrano* in the past you're already familiar with the gist of what it does, and can probably skip this section. The rest of you, bear with me.

0 commit comments

Comments
 (0)