mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
555 B
22 lines
555 B
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
updates: {
|
|
channel: 'BETA',
|
|
version: WIKI.version,
|
|
releaseDate: WIKI.releaseDate,
|
|
minimumVersionRequired: '3.0.0-beta.0',
|
|
minimumNodeRequired: '18.0.0'
|
|
},
|
|
init () {
|
|
fs.ensureDir(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, 'assets'))
|
|
fs.ensureDir(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, 'uploads'))
|
|
|
|
// Clear content cache
|
|
fs.emptyDir(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, 'cache'))
|
|
|
|
return this
|
|
}
|
|
}
|