qcobjects-admin
v1.0.1
Published
With this panel, you can manage settings, configurations and install plugins
Downloads
350
Maintainers
Readme
QCObjects Admin Panel
Install
npm i qcobjects-admin
Uninstall
Uninstall it before to go live in production environment.
npm uninstall qcobjects-admin
Setup in your config.json
Below routes are added automatically.
"backend":{
"routes":[
{
"name":"QCObjects Admin Panel!",
"description":"With this panel, you can manage settings, configurations and install plugins",
"path":"^/admin",
"microservice":"qcobjects-admin",
"headers": {
"content-type": "text/html; charset=utf-8"
},
"responseHeaders":{
},
"cors":{
"allow_origins":"*"
}
}
]
}
# Visit
Visit https://localhost:port/admin
Create your own microservice
To make your own microservice, you can generate it with QCObjects CLI using this package as template:
qcobjects create --custom=qcobjects-admin my-own-admin