Skip to main content
Initialize an email project

How to start an email project from scratch

eWizard Team avatar
Written by eWizard Team
Updated over a year ago

Use eWizard CLI to create an email project from a scaffolding template.

1) Log in to your eWizard instance by following the instructions in the Login section.

2) Go to a directory where you want to initialize your email project.

For example, let's create the email directory and then:

cd email

3) Initialize your project.

wiz init

4) Select the email template, which is option number 1.


TIP: To skip the template selection step, you can initialize the email template with
โ€‹ wiz init email. For more options, see eWizard CLI commands.


5) Select if you want to use ESLint.

6) Enter the project description, name, and author.


TIP: You can just hit Enter to select the default values.


The email project is initialized with the default template.

7) Build your email project and serve it on a local server as a static site.

wiz dev --live

eWizard CLI starts a hot-reloading development server at http://localhost:3000/


TIP: The --live option tracks the changes and continuously builds the email project.

See eWizard CLI commands for a complete list of commands with options.


Did this answer your question?