Skip to content

Commit 1278847

Browse files
jetbeejetbee
authored andcommitted
セットアップの最初の部分
1 parent 8f77aae commit 1278847

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

I-Introduction/Getting-started.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,46 @@
1-
# Setup
1+
# セットアップ
2+
> # Setup
23
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.
46
5-
## Via the compiled archive
7+
## アーカイブからインストールする
8+
> ## Via the compiled archive
69
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.
812
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.
1015
1116
```bash
1217
$ wget http://rocketeer.autopergamene.eu/versions/rocketeer.phar
1318
$ chmod +x rocketeer.phar
1419
$ mv rocketeer.phar /usr/local/bin/rocketeer
1520
```
1621

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.
1824
19-
## With Composer
25+
## Composerでインストールする
26+
> ## With Composer
2027
21-
### Locally
28+
### ローカル環境で
29+
> ### Locally
2230
23-
You can also install Rocketeer with Composer as any package :
31+
他のパッケージと同じように、Composerを使ってインストールできます。
32+
> You can also install Rocketeer with Composer as any package :
2433
2534
```bash
2635
$ composer require anahkiasen/rocketeer
2736
$ php vendor/bin/rocketeer ignite
2837
```
2938

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/`.
3141
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.
3344
3445
### Globally
3546

0 commit comments

Comments
 (0)