From 81d7238efd5bca0ed385edb5c6bd686f3ad03286 Mon Sep 17 00:00:00 2001 From: Harpal Jadeja Date: Sun, 24 Nov 2024 18:24:29 +0530 Subject: [PATCH 1/2] chore: edit init command in README.md forge can create a directory and use the template at the same time --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index f63c082..9ea9d0e 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,7 @@ create a new repository with this repo as the initial state. Or, if you prefer to install the template manually: ```sh -$ mkdir my-project -$ cd my-project -$ forge init --template PaulRBerg/foundry-template +$ forge init --template PaulRBerg/foundry-template my-project $ bun install # install Solhint, Prettier, and other Node.js deps ``` From 9e8ec96a9e92a0596adc6e20a480c7df6dd76ea2 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Mon, 25 Nov 2024 12:34:45 +0000 Subject: [PATCH 2/2] docs: bring back cd command --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9ea9d0e..c68171a 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Or, if you prefer to install the template manually: ```sh $ forge init --template PaulRBerg/foundry-template my-project +$ cd my-project $ bun install # install Solhint, Prettier, and other Node.js deps ```