86d
v0.0.4
Published
CLI for 86d — modular, open-source commerce platform
Downloads
228
Maintainers
Readme
[!WARNING] This project is under active development and is not ready for production use. Please proceed with caution. Use at your own risk.
@86d-app/86d
CLI for 86d — modular, open-source commerce platform.
Installation
npm install -g @86d-app/86dCommands
| Command | Description |
|---|---|
| 86d dev | Start the store development server |
| 86d init | Configure a local store (env, deps, codegen) |
| 86d status | Show project health and configuration |
| 86d module create <name> | Scaffold a new module |
| 86d module list | List all modules |
| 86d module info <name> | Show module details |
| 86d module enable <name> | Enable a module in the active template |
| 86d module disable <name> | Disable a module in the active template |
| 86d template create <name> | Scaffold a new template from brisa |
| 86d template list | List all templates |
| 86d generate | Run all code generation |
| 86d generate modules | Generate module imports and API router |
| 86d generate components | Generate component documentation |
Usage
# Initialize a new store
86d init
# Check project health
86d status
# Start development
86d dev
# Scaffold and enable a custom module
86d module create loyalty-points
86d module enable loyalty-points
# Regenerate after changes
86d generate