PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
lib
/
commands
const Command = require('../command'); class UninstallCommand extends Command { async run(argv) { const fs = require('fs-extra'); const path = require('path'); const ghostUser = require('../utils/use-ghost-user'); if (!argv.force) { this.ui.log('WARNING: Running this command will delete all of your themes, images, data, any files related to this Ghost instance, and the contents of this folder!\n' + 'There is no going back!', 'yellow'); } const instance = this.system.getInstance(); const confirmed = await this.ui.confirm('Are you sure you want to do this?', argv.force); if (!confirmed) { return; } await this.ui.listr([{ title: 'Stopping Ghost', task: async () => { instance.loadRunningEnvironment(true); await instance.stop(true); }, skip: async () => { const isRunning = await instance.isRunning(); return !isRunning; } }, { title: 'Removing content folder', enabled: () => ghostUser.shouldUseGhostUser(path.join(instance.dir, 'content')), task: () => this.ui.sudo(`rm -rf ${path.join(instance.dir, 'content')}`) }, { title: 'Removing related configuration', task: () => { this.system.setEnvironment(!fs.existsSync(path.join(instance.dir, 'config.production.json'))); return this.system.hook('uninstall', instance); } }, { title: 'Removing Ghost installation', task: () => { this.system.removeInstance(instance); return Promise.all(fs.readdirSync('.').map(file => fs.remove(file))); } }]); } } UninstallCommand.description = 'Remove a Ghost instance and any related configuration files'; UninstallCommand.options = { force: { alias: 'f', description: 'Don\'t confirm deletion', type: 'boolean' } }; module.exports = UninstallCommand;
[-] stop.js
[edit]
[-] migrate.js
[edit]
[-] restart.js
[edit]
[+]
..
[-] run.js
[edit]
[-] import.js
[edit]
[-] install.js
[edit]
[-] export.js
[edit]
[-] uninstall.js
[edit]
[+]
doctor
[-] check-update.js
[edit]
[-] start.js
[edit]
[-] config.js
[edit]
[-] update.js
[edit]
[-] ls.js
[edit]
[-] setup.js
[edit]
[-] buster.js
[edit]
[-] log.js
[edit]
[-] version.js
[edit]