full_stack_scaffold
Generate production-ready full-stack project structures with frontend, backend, and database configurations using a single command.
Instructions
Generates a complete full-stack project structure with all necessary files and configurations. One command to create a production-ready project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectName | Yes | Name of the project | |
| frontend | Yes | Frontend framework | |
| backend | Yes | Backend framework | |
| database | Yes | Database | |
| features | No | Additional features |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"backend": {
"description": "Backend framework",
"enum": [
"express",
"fastapi",
"django",
"nestjs",
"none"
],
"type": "string"
},
"database": {
"description": "Database",
"enum": [
"postgresql",
"mongodb",
"sqlite",
"none"
],
"type": "string"
},
"features": {
"description": "Additional features",
"items": {
"type": "string"
},
"type": "array"
},
"frontend": {
"description": "Frontend framework",
"enum": [
"react",
"vue",
"svelte",
"next",
"none"
],
"type": "string"
},
"projectName": {
"description": "Name of the project",
"type": "string"
}
},
"required": [
"projectName",
"frontend",
"backend",
"database"
],
"type": "object"
}