generate json file

This commit is contained in:
Leifer
2022-10-27 11:10:04 +02:00
parent ceade85334
commit 860bd8539f
8 changed files with 109 additions and 18 deletions

View File

@@ -3,6 +3,7 @@ const { yellow, red } = require('kleur')
const { installAll } = require('../install')
const { cleanSession } = require('../clean')
const { checkNodeVersion, checkOs } = require('../check')
const { jsonConfig } = require('../configuration')
const startInteractive = async () => {
const questions = [
@@ -120,6 +121,7 @@ const startInteractive = async () => {
await cleanAllSession()
await vendorProvider()
await dbProvider()
await jsonConfig()
}
module.exports = { startInteractive }