-
Notifications
You must be signed in to change notification settings - Fork 0
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.
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
If you have not installed the vue-cli:
npm install -g @vue/cli
Then for all:
cd server/frontend
npm install
Nothing special for this:
cd agent
pip install -r requirements.txt