UNPKG

stackpress

Version:

Incept is a content management framework.

14 lines (13 loc) 466 B
import { action } from '@stackpress/ingest/Server'; import install from '../../scripts/install.js'; export default action(async function InstallScript(_req, res, ctx) { const cli = ctx.plugin('cli'); const database = ctx.plugin('database'); if (!database) { cli?.verbose && cli.control.error('No database found'); res.setError('No database found'); return; } await install(ctx, database, cli); res.setStatus(200); });