Config
We have config.json on root of porject
Basic
Basic Setting for the Database and Session genration
{
"env": {
"host": "hostname.com", // hostname
"sslhost": ".hostname.com", // hostname for ssl
"dbhost": "localhost", // database host
"dbname": "demo", // database name
"dbuser": "username", // database user
"dbpwd": "password", // database password
"samesite": "Strict", // samesite
"httponly": true, // session
"secure": true // session
},
}
Then What we want to backend and front we have right now limited option like
Back End
{
"back-end":[
"php", // A Php App
"deno" // A Deno App **Unstable
]
}
Front End
{
"front-end":[
"angular", // api integration and state management ngxs
"solidjs", // api integration with solid store. **not tested for long time.
"vuejs" // not functional
]
}
Angular
Specific angular configuration
"angular": {
"outputPath": "..\/public_html\/manager",
"assets": []
}
Solidjs
Coming Soon
Vuejs
Coming Soon