yapi/server/utils/initConfig.js

13 lines
360 B
JavaScript
Raw Normal View History

import path from 'path';
import fs from 'fs-extra';
import config from '../config.js';
2017-07-27 11:50:15 +08:00
let runtimePath = config.runtime_path;
fs.ensureDirSync( runtimePath );
fs.ensureDirSync( path.join(runtimePath, 'log'));
let configPath = path.join(runtimePath, 'config.json')
fs.writeFileSync(configPath,
JSON.stringify(config, null, '\t'),
{ encoding: 'utf8' }
);