diff --git a/remix.init/index.js b/remix.init/index.js index 1020665e..7b31e2b7 100644 --- a/remix.init/index.js +++ b/remix.init/index.js @@ -50,18 +50,18 @@ async function main({ rootDirectory }) { fs.writeFile(ENV_PATH, newEnv), ]); - console.log(`1️⃣ Setting up the database`); + console.log(`1️⃣ Setting up the database`); execSync(`npm run db:deploy`, { stdio: "inherit", cwd: rootDirectory }); // seed the database - console.log("2️⃣ Putting some test data into the database."); + console.log("2️⃣ Putting some test data into the database."); execSync(`npm run db:seed`, { stdio: "inherit", cwd: rootDirectory }); // get the build ready - console.log("3️⃣ Running the build to verify things are working"); + console.log("3️⃣ Running the build to verify things are working"); execSync(`npm run build`, { stdio: "inherit", cwd: rootDirectory }); - console.log(`✅ Project is ready! Start development with "npm run dev"`); + console.log(`✅ Project is ready! Start development with "npm run dev"`); } module.exports = main;