|
1 |
| -# Setup |
| 1 | +# セットアップ |
| 2 | +> # Setup |
2 | 3 |
|
3 |
| -Installing Rocketeer on a project is quite easy, there are several ways to do so. |
| 4 | +プロジェクトにRocketeerをインストールするのはとても簡単です。インストール方法はいくつかあります。 |
| 5 | +> Installing Rocketeer on a project is quite easy, there are several ways to do so. |
4 | 6 |
|
5 |
| -## Via the compiled archive |
| 7 | +## アーカイブからインストールする |
| 8 | +> ## Via the compiled archive |
6 | 9 |
|
7 |
| -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. |
| 10 | +最も簡単な方法は、アーカイブをダウンロード[ダウンロードアドレス](http://rocketeer.autopergamene.eu/versions/rocketeer.phar)して、アプリケーションのディレクトリに入れる方法です。 |
| 11 | +> 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. |
8 | 12 |
|
9 |
| -You can also install it globally by executing the following command which will then give you a global `rocketeer` command to use in any folder. |
| 13 | +どこのフォルダからも rocketeer コマンドが使えるようにするには、以下のコマンドでグローバル環境にインストールします。 |
| 14 | +> You can also install it globally by executing the following command which will then give you a global `rocketeer` command to use in any folder. |
10 | 15 |
|
11 | 16 | ```bash
|
12 | 17 | $ wget http://rocketeer.autopergamene.eu/versions/rocketeer.phar
|
13 | 18 | $ chmod +x rocketeer.phar
|
14 | 19 | $ mv rocketeer.phar /usr/local/bin/rocketeer
|
15 | 20 | ```
|
16 | 21 |
|
17 |
| -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. |
| 22 | +これで`rocketeer ignite`と打ち込むだけで、プロジェクトをセットアップするための質問が開始されます。あとはうまくいくはずです。 |
| 23 | +> 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. |
18 | 24 |
|
19 |
| -## With Composer |
| 25 | +## Composerでインストールする |
| 26 | +> ## With Composer |
20 | 27 |
|
21 |
| -### Locally |
| 28 | +### ローカル環境で |
| 29 | +> ### Locally |
22 | 30 |
|
23 |
| -You can also install Rocketeer with Composer as any package : |
| 31 | +他のパッケージと同じように、Composerを使ってインストールできます。 |
| 32 | +> You can also install Rocketeer with Composer as any package : |
24 | 33 |
|
25 | 34 | ```bash
|
26 | 35 | $ composer require anahkiasen/rocketeer
|
27 | 36 | $ php vendor/bin/rocketeer ignite
|
28 | 37 | ```
|
29 | 38 |
|
30 |
| -And that's all, the configuration file referenced below will be created at `yourapp/.rocketeer/`. |
| 39 | +たったこれだけです。`yourapp/.rocketeer/`に、下記で参照する設定ファイルが作成されます。 |
| 40 | +> And that's all, the configuration file referenced below will be created at `yourapp/.rocketeer/`. |
31 | 41 |
|
32 |
| -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. |
| 42 | +Rocketeerのコマンドにアクセスするには、`php vendor/bin/rocketeer`としてください。`alias rocketeer=php vendor/bin/rocketeer`とシンプルにエイリアスすることもできます。もしくは、`vendro/bin/`を_PATH_に加えることで、ローカルのバイナリに常時アクセスできるようにできます。 |
| 43 | +> 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. |
33 | 44 |
|
34 | 45 | ### Globally
|
35 | 46 |
|
|
0 commit comments