Skip to main content
Initialize a project

Create your own project in eWizard.js

eWizard Team avatar
Written by eWizard Team
Updated over 2 years ago

After installing eWizard CLI, you can create a project from one of the available templates:

Template

Description

email

A standard HTML-formatted email with media assets intended for mailing. You can use this template to initialize both approved and broadcast emails.

email-fragment

A part of the email with updates or additional information. With email fragments, you can re-use approved emails without creating new ones. This way, you create one email and edit it fast with ready-made email fragments.

e-Detailer

An interactive presentation. Medreps use e-Detailers to present their products to doctors in an engaging way on their mobile devices.

survey

A custom educational presentation created by agreement. You can use surveys both for learning and collecting efficiency stats.

component

A reusable Vue instance. You can add pre-existing components like buttons, text, or sliders and customize them in eWizard. And you can also develop your own components. For more information, see Initialize component template.

block

A group of components within one container used in emails, sites, and e-Detailers. Several components are combined with some common structure.

module

A combination of several blocks that covers a large part of an email or e-Detailer, sometimes a whole page. This is a ready-made item that you can create in eWizard or the target system and reuse it later. For more information about modules, see Blocks in e-Detailers and Basic email components.

site

A plain landing page that you can brand and fill with elements like feedback form, buttons, and agenda.


TIP: For more information about initializing specific templates, see the following articles:


To initialize your project from a template:

1) Log in to your eWizard instance.

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

For example, create the example directory and then:

cd example

3) Initialize your project:

wiz init

For a complete list of the wiz init command options, see wiz init [options].

4) Select the template you want to initialize:

— Use the ↑ and ↓ keyboard keys.

— Enter the option number as your answer.

For example, to initialize an email template, select 1) email or enter 1 as your answer.


TIP: To skip the template selection step, you can initialize the template with wiz init [template] where [template] is the template type. For example, wiz init email.


5) Specify if you want to use ESLint and Vuex.

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


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


The email project is initialized with the master template.

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

wiz dev --live

TIP: With the --live option, eWizard tracks the changes and continuously builds your project.

For a complete list of commands with options, see eWizard CLI commands.


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

Did this answer your question?