Skip to content

Commit

Permalink
ゴミ削除
Browse files Browse the repository at this point in the history
ゴミ削除
  • Loading branch information
jetbee committed Mar 1, 2015
1 parent a3d48ec commit 0335beb
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions I-Introduction/Getting-started.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,27 @@
[translation here]
# セットアップ

<!--original
# Setup
-->

[translation here]
プロジェクトにRocketeerをインストールするのはとても簡単です。以下のいずれかの方法でインストールできます。

<!--original
Installing Rocketeer on a project is quite easy, there are several ways to do so.
-->

[translation here]
## コンパイル済みのアーカイブを使う方法

<!--original
## Via the compiled archive
-->

[translation here]

最も簡単な方法は、[以下のアドレス](http://rocketeer.autopergamene.eu/versions/rocketeer.phar)からアーカイブをダウンロードしてアプリケーションのフォルダに入れることです。

<!--original
The easiest way is to just get the archive by doing downloading it [at the following addresss](http://rocketeer.autopergamene.eu/versions/rocketeer.phar) and putting it in your application's directory.
-->

[translation here]
もしくは、以下のコマンドを実行して、グローバル環境にインストールすれば、グローバルなコマンドとしてどこのフォルダでも`rocketeer`コマンドを使うことができるようになります。

<!--original
Expand All @@ -40,29 +34,24 @@ $ chmod +x rocketeer.phar
$ mv rocketeer.phar /usr/local/bin/rocketeer
```

[translation here]
あとは、ただ、`rocketeer ignite`と打ち込むだけです。セットアップするために必要ないくつもの質問が聞かれます。あとはうまくいくはずです。


<!--original
Then you just need to type `rocketeer ignite`. You'll get asked a series of question to setup your project and you should be good to go.
-->

[translation here]
## Composerを使う方法

<!--original
## With Composer
-->

[translation here]
### ローカル環境へ

<!--original
### Locally
-->

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

<!--original
Expand All @@ -74,28 +63,24 @@ $ composer require anahkiasen/rocketeer
$ php vendor/bin/rocketeer ignite
```

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

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

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

<!--original
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.
-->

[translation here]
### グローバル環境へ

<!--original
### Globally
-->

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

<!--original
Expand All @@ -107,14 +92,12 @@ $ composer global require anahkiasen/rocketeer
$ rocketeer ignite
```

[translation here]
## 設定

<!--original
## Configuration
-->

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

Expand All @@ -123,28 +106,24 @@ You'll do most of your configuration in Rocketeer's configuration files, in the
There are a lot of options in the configuration file, each is explained thoroughly so take your time to read the comments carefully.
-->

[translation here]
## Rocketeer を使う

<!--original
## Using Rocketeer
-->

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

<!--original
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`.
-->

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

<!--original
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.
-->

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

Expand All @@ -153,7 +132,6 @@ Then you can just hit `php rocketeer.phar deploy`. It will create an initial rel
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.
-->

[translation here]
### フォルダ構成

<!--original
Expand All @@ -162,8 +140,6 @@ Afterwards, to update it you can either run the same command again which will cr

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

[translation here]

<!--original
Rocketeer recognizes its custom configuration in the folder you currently are in. Same thing for the custom `tasks.php` and `events.php` files, so you could have that organization :
-->
Expand Down

0 comments on commit 0335beb

Please sign in to comment.