> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Paradime CLI

> Paradime CLI: Command-line interface for managing dbt™ projects. Enhance productivity with powerful CLI tools.

export const Arcade = ({src, title}) => <div style={{
  position: 'relative',
  paddingBottom: 'calc(56.2225% + 41px)',
  height: 0,
  width: '100%'
}}>
    <iframe src={src} title={title} frameBorder="0" loading="lazy" allow="clipboard-write" allowFullScreen style={{
  position: 'absolute',
  top: 0,
  left: 0,
  width: '100%',
  height: '100%',
  colorScheme: 'light'
}} />
  </div>;

Paradime provide two CLI commands to help you getting started developing your dbt™️ project.

## Initialize your dbt™ project

If you connected an empty git repository, you can use the Paradime CLI to initialize your dbt™️ project using the command:

```bash theme={"system"}
paradime repo init
```

Running this CLI command in your terminal will:

* Create a new branch called `initialize-dbt-project`
* Ask you to name your dbt project
* Create a dbt project skeleton with all the dbt™️ folders and files such as the `dbt_project.yml` etc.
* Create a `paradime_schedules.yml` to help you getting started setting up your dbt™️ production run. You can find more info here on running dbt™️ in production.
* Optionally, you will be able also to generate sources.yml files based on your development connection for selected schema/datasets.

When done, simply commit you changes and open your first Pull Request 🙌

<Arcade src="https://demo.arcade.software/NLecn9PgUitWHqltfF8Z?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" title="Paradime CLI" />

***

### Generate your sources.yml with DinoAI

To generate and/or update your sources.yml files, use [DinoAI's](/products/dino-ai/index) powerful [source generation capabilities](/products/dino-ai/copilot/use-cases/creating-sources-from-your-warehouse):

**Step 1: Open DinoAI**

1. Click the DinoAI icon (🪄) in the left panel of the Code IDE
2. Ensure **Agent Mode** is selected

**Step 2: Generate Sources**

1. Enter your prompt: *"Create a sources.yml file for my data warehouse"*
2. DinoAI will scan your connected data warehouse
3. Review the generated source definitions
4. Accept the changes to create the files in your project

<Check>
  **Benefits of DinoAI Source Generation:**

  * **Automatic scanning** of your data warehouse metadata
  * **Accurate table and column definitions** with proper data types
  * **Proper YAML formatting** following dbt best practices
  * **Up-to-date** with your current warehouse schema
</Check>


## Related topics

- [Paradime CLI](/developers/paradime-cli/index.md)
- [Bolt CLI](/developers/paradime-cli/bolt-cli.md)
- [DinoAI CLI](/developers/paradime-cli/dinoai-cli.md)
- [Tableau CLI](/developers/paradime-cli/tableau-cli.md)
- [Fivetran CLI](/developers/paradime-cli/fivetran-cli.md)
