From 4f0a6260a394e7ce43aeefa988a3eb359d5deb02 Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Fri, 16 Feb 2024 13:04:56 -0600 Subject: [PATCH] Add git clone to instructions and show how to pass options --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index a6f908b..535e2bb 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,20 @@ You need to have Docker installed on your machine. You can find instructions on ## Usage +First, clone the repository: + +```bash +git clone https://github.com/rails/rails-new.git +cd rails-new +``` + To generate a new Rails application, you can run the following command: ```bash bin/rails-new myapp ``` + +Or with options: +```bash +bin/rails-new myapp --main +```