# Creating a project

## Create a Houston project

To use most of the Houston commands, you need to run commands on initialized Houston projects. So the first step is to create a Houston project. You can create a starter project template, but for those who are getting started, you can use Houston Cargos, which are example applications and project templates. We'll use MyTerraToken box, which creates a token that can be transferred between accounts:&#x20;

1. Create a new directory for your Houston project

```
$ mkdir myProject
$ cd myProject
```

{% hint style="info" %}
Other project templates can be downloaded with unbox command.
{% endhint %}

{% hint style="info" %}
To create a starter project template, run `houston init`.
{% endhint %}

Once this operation is completed, you'll now have a project structure with the following items:

```
myProject/
  |- contracts
  | |- starter
  |- wasm
  |- schema
  |- migrations
  | |- 0_deploy_starter.ts 
  |- package.json
  |- tsconfig.json
```

`contracts/` : directory for cosmwasm contracts

`wasm/` : wasm binaries for compiled smart contracts

`schema/` : schemas of smart contracts

`migrations/` : Directory for migration scripts for testing/deploying your smart contracts

`package.json`: package manager for migration scripts. you can add other network's client SDK package to deploy smart contracts in multiple blockchain with the migration scripts

`tsconfig.json`: Typescript configuration for migration scripts


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://terraform-labs.gitbook.io/houston/untitled.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
