Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
kentcdodds committed Mar 15, 2022
1 parent d302e5b commit bc90985
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions remix.init/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit bc90985

Please sign in to comment.