codellms
Version:
Use LLMS to automatically generate a complete application project.
21 lines (20 loc) • 660 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.run = void 0;
const path = require('path');
const yargs = require('yargs');
const fs = require('fs');
const toml = require('toml');
const argv = yargs
.option('config', {
alias: 'c',
describe: 'Path to configuration file',
default: 'codegpt.toml'
})
.argv;
const configPath = argv.config;
const configFile = fs.readFileSync(configPath, 'utf-8');
const config = toml.parse(configFile);
console.log('run run run!!!');
var core_1 = require("@oclif/core");
Object.defineProperty(exports, "run", { enumerable: true, get: function () { return core_1.run; } });