QuickStart
Before you begin using ScanAI, ensure that you have the following requirements installed and configured:
Node.js (>= 16.x)
ScanAI relies on Node.js for execution. To check if you have the correct version installed, run:
node -vIf you need to install or upgrade Node.js, visit https://nodejs.org/.
A package manager (npm or yarn)
You need a package manager like npm or yarn to install dependencies.
Check if npm is installed:
npm -vInstall yarn using npm:
npm install --global yarnCheck if yarn is installed:
yarn -vA valid OpenAI API key
ScanAI uses OpenAI for its core, so you need an API key to start using ScanAI tools.
Configure environment variables
ScanAI requires environment variables for configuration. Refer to .env.example for the necessary parameters.
Once these prerequisites are set up, you are ready to install and configure ScanAIfor development!
References:
.env.example: ./ (keep the original link in your project)
Node.js Official Website: https://nodejs.org/
Last updated