Skip to content

Development Environment Setup

William Wernert edited this page Feb 26, 2019 · 1 revision

The following instructions assume you are in the repo's base directory when giving directory commands.

Server

Backend

If you have not installed Django:

pip install Django

Then for all:

cd server/backend
pip install -r requirements.txt
python manage.py migrate

If running Linux, you may need to use the following command instead:

python3 manage.py migrate

Frontend

If you have not installed the vue-cli:

npm install -g @vue/cli

Then for all:

cd server/frontend
npm install

Agent

Nothing special for this:

cd agent
pip install -r requirements.txt

Clone this wiki locally