API for processing and reviewing academic documents.
Make sure you have Node.js installed. Run the following command to install the dependencies:
npm install
Before starting the project, create a .env file in the root of the project and configure the necessary environment variables.
GOOGLE_CLIENT_EMAIL=your-google-service-account@domain.com
GOOGLE_PRIVATE_KEY=your-google-private-key
OPENAI_API_KEY=your-openai-api-key
MONGODB_URL=mongodb-connection-url
To start the service, run:
npm start
The service will be available at http://localhost:3000.
Unit Tests
npm run test-unit
API Tests
npm run test-api
All Tests
npm run test-all