diff --git a/leo/commands/new.rs b/leo/commands/new.rs index 1ceec67fed..74e3d52251 100644 --- a/leo/commands/new.rs +++ b/leo/commands/new.rs @@ -21,7 +21,7 @@ use crate::{ }; use leo_package::{ inputs::*, - root::{Gitignore, Manifest}, + root::{Gitignore, Manifest, README}, source::{LibFile, MainFile, SourceDirectory}, }; @@ -95,6 +95,9 @@ impl CLI for NewCommand { // Create the .gitignore file Gitignore::new().write_to(&path)?; + // Create the README.md file + README::new(&package_name).write_to(&path)?; + // Create the source directory SourceDirectory::create(&path)?;