mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
* refactor(e2e): fix tests with latest changes, convert to TS, use test Ids * chore(EndpointMenu.jsx): add data-testid attribute to new-conversation-menu button * refactor(EndpointItem): add data-testid attr., convert to TS * refactor(e2e): remove unnecessary awaits and convert to TS * chore(playwright.config.local.ts): add absolute path to server index.js file chore(playwright.config.local.ts): add dotenv configuration chore(playwright.config.local.ts): change webServer command to use absolute path chore(playwright.config.local.ts): add NODE_ENV and process.env to webServer env chore(playwright.config.local.ts): remove unused import chore(login.spec.js): delete login.spec.js file * chore(.gitignore): add 'my.secrets' to the list of ignored files fix(Registration.tsx): add 'data-testid' attribute to the error message div fix(Registration.spec.tsx): comment out test case that calls 'registerUser.mutate' * chore(ConvoIcon.tsx): add data-testid attribute to svg element chore(messages.spec.ts): refactor conversation navigation logic * chore(playwright.config.ts): add support for absolute path to server index.js file feat(playwright.config.ts): add support for dotenv configuration feat(playwright.config.ts): set NODE_ENV to 'production' in webServer environment variables * chore(workflows): comment out push event and specify paths for pull_request event in backend-review.yml chore(workflows): comment out push event and specify paths for pull_request event in frontend-review.yml * chore(install.js): add check to skip install script in CI environment * chore: complete playwright workflow * chore(Landing.tsx): add data-testid attribute to landing title element chore(authenticate.ts): update selector to wait for landing title element by test id instead of text content * chore(playwright.yml): add step to upload screenshot artifact on failure fix(authenticate.ts): capture screenshot before waiting for landing title and increase timeout due to GH Actions load time * chore(playwright.yml): rename artifact name from 'screenshot' to 'login-screenshot' feat(LoginForm.tsx): add data-testid attribute to login button fix(authenticate.ts): change screenshot name to 'login-screenshot.png' and conditionally take screenshot only in CI environment * chore(playwright.yml): add CI environment variable and set it to true * chore(playwright.yml): update Playwright installation command chore(playwright.config.ts): update storageState path to use process.cwd() * fix(playwright.yml): update node version to 18 in setup-node action fix(playwright.yml): update actions/cache to v3 in Cache Node.js modules step fix(playwright.yml): update actions/cache to v3 in Cache Playwright installations step fix(authenticate.ts): change login button click to press 'Enter' on password input * chore(playwright.yml): update E2E_USER_EMAIL and E2E_USER_PASSWORD values for testing purposes chore(authenticate.ts): add console.dir to log user object for debugging * chore(playwright.yml): add step to upload storageState artifact The storageState artifact is now uploaded as part of the workflow. This artifact contains the state of the storage used during the end-to-end tests. It will be retained for 2 days. * chore(playwright.yml): comment out upload screenshot step chore(playwright.config.ts): change NODE_ENV to development chore(authenticate.ts): comment out screenshot related code * chore(playwright.config.ts): add SESSION_EXPIRY environment variable with value 86400000 * chore(playwright.yml): update environment variables in Playwright workflow fix(General.tsx): add data-testid attributes to clear conversations buttons test(messages.spec.ts): add setup and teardown steps for clearing conversations before and after tests * fix(messages.spec.ts): fix clearing conversations before and after message tests feat(messages.spec.ts): add beforeEach and afterEach hooks to create and close new page for each test * chore: remove storageStage upload artifact
112 lines
3.6 KiB
JavaScript
112 lines
3.6 KiB
JavaScript
/**
|
|
* Install script: WIP
|
|
*/
|
|
const fs = require('fs');
|
|
const { exit } = require('process');
|
|
const { askQuestion } = require('./helpers');
|
|
|
|
// If we are not in a TTY, lets exit
|
|
if (!process.stdin.isTTY) {
|
|
console.log('Note: we are not in a TTY, skipping install script.');
|
|
exit(0);
|
|
}
|
|
|
|
// If we are in CI env, lets exit
|
|
if (process.env.NODE_ENV === 'ci') {
|
|
console.log('Note: we are in a CI environment, skipping install script.');
|
|
exit(0);
|
|
}
|
|
|
|
// Save the original console.log function
|
|
const originalConsoleWarn = console.warn;
|
|
console.warn = () => {};
|
|
const loader = require('./loader');
|
|
console.warn = originalConsoleWarn;
|
|
|
|
const rootEnvPath = loader.resolve('.env');
|
|
|
|
// Skip if the env file exists
|
|
if (fs.existsSync(rootEnvPath)) {
|
|
exit(0);
|
|
}
|
|
|
|
// Run the upgrade script if the legacy api/env file exists
|
|
// Todo: remove this in a future version
|
|
if (fs.existsSync(loader.resolve('api/.env'))) {
|
|
console.warn('Upgrade script has yet to run, lets do that!');
|
|
require('./upgrade');
|
|
exit(0);
|
|
}
|
|
|
|
// Check the example file exists
|
|
if (!fs.existsSync(rootEnvPath + '.example')) {
|
|
console.red('It looks like the example env file is missing, please complete setup manually.');
|
|
exit(0);
|
|
}
|
|
|
|
// Copy the example file
|
|
fs.copyFileSync(rootEnvPath + '.example', rootEnvPath);
|
|
|
|
// Update the secure keys!
|
|
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);
|
|
|
|
// Init env
|
|
let env = {};
|
|
|
|
(async () => {
|
|
// Lets colour the console
|
|
console.purple('=== LibreChat First Install ===');
|
|
console.blue('Note: Leave blank to use the default value.');
|
|
console.log(''); // New line
|
|
|
|
// Ask for the app title
|
|
const title = await askQuestion('Enter the app title (default: "LibreChat"): ');
|
|
env['APP_TITLE'] = title || 'LibreChat';
|
|
|
|
// Ask for OPENAI_API_KEY
|
|
const key = await askQuestion('Enter your OPENAI_API_KEY (default: "user_provided"): ');
|
|
env['OPENAI_API_KEY'] = key || 'user_provided';
|
|
|
|
// GPT4???
|
|
const gpt4 = await askQuestion('Do you have access to the GPT4 api (y/n)? Default: n');
|
|
if (gpt4 == 'y' || gpt4 == 'yes') {
|
|
env['OPENAI_MODELS'] = 'gpt-3.5-turbo,gpt-3.5-turbo-0301,text-davinci-003,gpt-4,gpt-4-0314';
|
|
} else {
|
|
env['OPENAI_MODELS'] = 'gpt-3.5-turbo,gpt-3.5-turbo-0301,text-davinci-003';
|
|
}
|
|
|
|
// Ask about mongodb
|
|
const mongodb = await askQuestion(
|
|
'What is your mongodb url? (default: mongodb://127.0.0.1:27017/LibreChat)',
|
|
);
|
|
env['MONGO_URI'] = mongodb || 'mongodb://127.0.0.1:27017/LibreChat';
|
|
// Very basic check to make sure they entered a url
|
|
if (!env['MONGO_URI'].includes('://')) {
|
|
console.orange(
|
|
'Warning: Your mongodb url looks incorrect, please double check it in the `.env` file.',
|
|
);
|
|
}
|
|
|
|
// Lets ask about open registration
|
|
const openReg = await askQuestion('Do you want to allow user registration (y/n)? Default: y');
|
|
if (openReg === 'n' || openReg === 'no') {
|
|
env['ALLOW_REGISTRATION'] = 'false';
|
|
// Lets tell them about how to create an account:
|
|
console.red(
|
|
'Note: You can create an account by running: `npm run create-user <email> <name> <username>`',
|
|
);
|
|
// sleep for 1 second so they can read this
|
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
}
|
|
|
|
// Update the env file
|
|
loader.writeEnvFile(rootEnvPath, env);
|
|
|
|
// We can ask for more here if we want
|
|
console.log(''); // New line
|
|
console.green('Success! Please read our docs if you need help setting up the rest of the app.');
|
|
console.log(''); // New line
|
|
})();
|