Documentation Index
Fetch the complete documentation index at: https://docs.crossmint.com/llms.txt
Use this file to discover all available pages before exploring further.
The projects create command allows you to create a new project in your Crossmint account.
To use it, run the following command from your terminal
crossmint projects create [options]
Options
| Option | Description |
|---|
-n, --name <name> | Give your project a name |
Example
Create a new project:
crossmint projects create
You’ll be prompted to enter a name for the project:
? Enter project name: My New Project
After entering a name, you’ll see a confirmation message:
✔ ✅ Project created successfully!
📌 Project Details:
Name: New Project
ID: 4b0392a3-35c3-458c-a43e-32d2cdc65eda
You’ll be ask to confirm if you want to select the created project for subsequent commands.
? Do you want to select this project? (Y/n)
```
You can also specify the project name directly using the `--name` option:
```bash
crossmint projects create --name "My New Project"
```