Skip to content

Setting up the development environment

Mitchell Miller edited this page Sep 26, 2019 · 3 revisions

This repo contains both Python dependencies and an npm project. This page gives a quick overview of setting up the development environment for our tool.

Python Dependencies

  • Python v3.7
  • Pip
  • lizard v1.16.6
  • Pyinstaller

NPM dependencies found here

Setting up

This environment is intended to work on MacOS and Unix systems. First off, both Pythonv3.7, pip, and node must be installed. From there installing all dependencies should be completed in two steps:

  1. running pip install -r requirements.txt in the base directory
  2. running npm install in the web-ui/ directory

After this running python build.py in the base directory should produce a working standalone executable in dist/ titled codeQualityAssist

Clone this wiki locally