# Src

This template consists of initialization, compilation and deployment modules.

### Initialize a project

```bash
polar init <project-name>
```

This will create a directory <project-name> inside current directory with boiler-plate code.

## Compile the project

Go to project directory:

```bash
cd <project-name>
```

Compile the project and generate `.wasm` files:

```bash
polar compile
```