@maquestiaux-foundry/stackcraft
Version:
A CLI tool to scaffold full-stack projects: folder structure, eUI frontend, ExpressJS backend, and SQL database setup.
101 lines • 3.43 kB
JSON
{
"name": "My sample project 2",
"version": "0.5.0",
"description": "A sample project to demonstrate the Stackcraft tool",
"author": "Your Name",
"license": "EUPL-1.2",
"projectFolder": "my-sample-project",
"stack": {
"database": "Oracle",
"backend": {
"type": "Node.js",
"framework": "Express"
},
"frontend": {
"type": "eUI",
"framework": "Angular"
}
},
"database": {
"type": "Oracle",
"tables": [
{
"name": "table1",
"referencingTo": [
"table2"
],
"fields": [
{
"name": "pk",
"type": "serial",
"nullable": false,
"isPrimaryKey": true,
"comment": "Primary key"
},
{
"name": "description",
"type": "varchar(255)",
"nullable": false,
"comment": "Description of the entity"
},
{
"name": "table2_fk",
"type": "integer",
"nullable": true,
"isForeignKey": true,
"foreignKey": {
"referencedTable": "table2",
"referencedColumn": "pk"
},
"comment": "Foreign key referencing table2"
},
{
"name": "created_on",
"type": "timestamp(6)",
"default": "current_timestamp",
"comment": "Creation timestamp"
},
{
"name": "modified_on",
"type": "timestamp(6)",
"default": "current_timestamp",
"comment": "Last update timestamp"
}
]
},
{
"name": "table2",
"referencedBy": [
"table1"
],
"fields": [
{
"name": "pk",
"type": "serial",
"nullable": false,
"isPrimaryKey": true,
"comment": "Primary key"
},
{
"name": "description",
"type": "varchar(255)",
"nullable": false,
"comment": "Description of the entity"
},
{
"name": "created_on",
"type": "timestamp(6)",
"default": "current_timestamp",
"comment": "Creation timestamp"
},
{
"name": "modified_on",
"type": "timestamp(6)",
"default": "current_timestamp",
"comment": "Last update timestamp"
}
]
}
]
}
}