3fbbd7970c
Code Quality / Python Lint & Format (push) Has been cancelled
Code Quality / Python Tests (push) Has been cancelled
Code Quality / JavaScript/TypeScript Lint (advisory) (push) Has been cancelled
Security Scan / CodeQL Analysis (python) (push) Has been cancelled
Security Scan / Dependency Review (push) Has been cancelled
Security Scan / CodeQL Analysis (javascript-typescript) (push) Has been cancelled
17 lines
587 B
Bash
17 lines
587 B
Bash
#!/bin/bash
|
|
|
|
# Install OpenAI and Dotenv for Python
|
|
# TODO: Check why this can't be done in requirements.txt
|
|
pip install python-dotenv
|
|
pip install openai
|
|
|
|
# Install developer tooling for linting, formatting, type-checking, and tests.
|
|
# These match the checks run in .github/workflows/code-quality.yml so
|
|
# contributors can reproduce them locally before opening a pull request.
|
|
pip install ruff black mypy pytest
|
|
|
|
# Install the OpenAI packages for Node.js
|
|
# (Python related dependencies are covered in requirements.txt)
|
|
# echo "Installing OpenAI For Node.js"
|
|
# npm install --save openai
|