Skip to main content

Initialise a project

To launch an Elara solution on Elara platform, you deploy a template. A project is the development workspace where you develop a solution template, and consists of all files used to describe the template.

In this tutorial, you will initialise a project on your machine in preparation for development of a template.

Initalise a project using the EDK CLI

Each project must be in it's own working directory. Using the command-line, create a new directory in your desired location on your machine, and navigate to it.

The edk project init command in the EDK CLI allows you to initialise a project. You can get help with usage of the command by running edk project init --help in the command-line.

edk project init

You will see the following output as a result:

ℹ package.json installed, run `npm install`
✔ init succeeeded

The edk project init command creates a series of files within your project working directory, which is organised in the following directory structure:

my-project
├── project.json
├── tsconfig.json
└── package.json

Each of these items forms the skeleton of a project, and each plays an important part in the Elara development process. The purpose of each is described below:

At a high level, the project.json in a project is a JSON file which acts as a manifest for the project, and is involved in the launch process for Elara solutions. The edk project init command creates a skeleton project.json in the project working directory. You can see the format of your skeleton project.json below:

{
"name": "my-project",
"assets": {}
}

In Elara development, you define Templates using the

TypeScript programming language, within .ts TypeScript files (you will learn this process in upcoming lessons). The assets field in a project.json catalogues these file assets. The edk project init command does not create any assets , so the assets collection is empty upon initialisation.

Install the project dependencies

Finally, run npm install to install the node package dependencies for your project.

The npm install command installs all package dependencies from your package.json within a local node_modules directory in your project working directory. It also creates a package-lock.json file, which describes the package dependency tree for the installation.

You do not need a detailed understanding of NPM to develop a template. If you would like a detailed understanding, refer to the

NPM documentation.

added 9 packages, and audited 10 packages in 3s

found 0 vulnerabilities

Next steps

In this tutorial you initialised a project and set up the project dependencies. Continue to the next tutorial to review the prequisite TypeScript knowledge needed for development in Elara.