A tool to scan GitHub repositories using GraphQL queries
These instructions will guide you through the process of setting up a local development environment.
- Git, Node.js, npm, should be installed
- A token for access to the GitHub API should be created
A step-by-step sequence of examples that tell you how to get your development environment running.
-
Clone the repository to your local machine
git clone {repo-link}
-
Navigate to the project directory
cd {project-directory}
-
Install pnpm globally if not installed
npm install -g pnpm
-
Navigate to the backend folder and copy
env.template
to.env
cd backend cp env.template .env
-
Return to the project root
cd ..
-
Install the project dependencies using pnpm
pnpm i