0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ruby on Railsで新規アプリケーションを作成する

Posted at

#Ruby on Railsで新規アプリケーションを作成する

username:~/environment $ rails new アプリケーション名

今回は、「practice_app」という名のアプリケーションを作成します。

ec2-user:~ $ cd environment
username:~/environment $ rails new practice_app

#アプリケーションを削除するには
以下のコマンドを入力してアプリケーションを削除する。

username:~/environment $ rm -rf アプリケーション名

rmはremoveのことで、ファイルやフォルダを削除するコマンド。
-rf はコマンドオプションの1つで、「フォルダ内のすべてのファイルとフォルダを削除する」という意味を持つ。

今回の場合は以下のように入力すると、アプリケーションを削除できる。

username:~/environment $ rm -rf practice_app
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?