| | |
| | |
| | |
| | const fs = require('fs'); |
| | const { exit } = require('process'); |
| | const { askQuestion } = require('./helpers'); |
| |
|
| | |
| | if (!process.stdin.isTTY) { |
| | console.log('Note: we are not in a TTY, skipping install script.'); |
| | exit(0); |
| | } |
| |
|
| | |
| | if (process.env.NODE_ENV === 'ci') { |
| | console.log('Note: we are in a CI environment, skipping install script.'); |
| | exit(0); |
| | } |
| |
|
| | |
| | const originalConsoleWarn = console.warn; |
| | console.warn = () => {}; |
| | const loader = require('./loader'); |
| | console.warn = originalConsoleWarn; |
| |
|
| | const rootEnvPath = loader.resolve('.env'); |
| |
|
| | |
| | if (fs.existsSync(rootEnvPath)) { |
| | exit(0); |
| | } |
| |
|
| | |
| | |
| | if (fs.existsSync(loader.resolve('api/.env'))) { |
| | console.warn('Upgrade script has yet to run, lets do that!'); |
| | require('./upgrade'); |
| | exit(0); |
| | } |
| |
|
| | |
| | if (!fs.existsSync(rootEnvPath + '.example')) { |
| | console.red('It looks like the example env file is missing, please complete setup manually.'); |
| | exit(0); |
| | } |
| |
|
| | |
| | fs.copyFileSync(rootEnvPath + '.example', rootEnvPath); |
| |
|
| | |
| | loader.addSecureEnvVar(rootEnvPath, 'CREDS_KEY', 32); |
| | loader.addSecureEnvVar(rootEnvPath, 'CREDS_IV', 16); |
| | loader.addSecureEnvVar(rootEnvPath, 'JWT_SECRET', 32); |
| | loader.addSecureEnvVar(rootEnvPath, 'MEILI_MASTER_KEY', 32); |
| |
|
| | |
| | let env = {}; |
| |
|
| | (async () => { |
| | |
| | console.purple('=== LibreChat First Install ==='); |
| | console.blue('Note: Leave blank to use the default value.'); |
| | console.log(''); |
| |
|
| | |
| | const title = await askQuestion('Enter the app title (default: "LibreChat"): '); |
| | env['APP_TITLE'] = title || 'LibreChat'; |
| |
|
| | |
| | const key = await askQuestion('Enter your OPENAI_API_KEY (default: "user_provided"): '); |
| | env['OPENAI_API_KEY'] = key || 'user_provided'; |
| |
|
| | |
| | const mongodb = await askQuestion( |
| | 'What is your mongodb url? (default: mongodb://127.0.0.1:27018/LibreChat)', |
| | ); |
| | env['MONGO_URI'] = mongodb || 'mongodb://127.0.0.1:27018/LibreChat'; |
| | |
| | if (!env['MONGO_URI'].includes('://')) { |
| | console.orange( |
| | 'Warning: Your mongodb url looks incorrect, please double check it in the `.env` file.', |
| | ); |
| | } |
| |
|
| | |
| | const openReg = await askQuestion('Do you want to allow user registration (y/n)? Default: y'); |
| | if (openReg === 'n' || openReg === 'no') { |
| | env['ALLOW_REGISTRATION'] = 'false'; |
| | |
| | console.red( |
| | 'Note: You can create an account by running: `npm run create-user <email> <name> <username>`', |
| | ); |
| | |
| | await new Promise((resolve) => setTimeout(resolve, 1000)); |
| | } |
| |
|
| | |
| | loader.writeEnvFile(rootEnvPath, env); |
| |
|
| | |
| | console.log(''); |
| | console.green('Success! Please read our docs if you need help setting up the rest of the app.'); |
| | console.log(''); |
| | })(); |
| |
|