Django based back-end application for VisualCircuit3.
- Clone the repository https://github.com/JdeRobot/VisualCircuit.git
- Change directory to
backend
- Create a Python3 virtual environment using venv.
For eg.
python -m venv .venv
- After activating the virtual environment, install the dependencies by running
pip install -r requirements.txt
- Add
.env
file to thebackend
folder. And add the variables as defined in .env.template - Create the static files to serve during execution by
python manage.py collectstatic
- Start the server by running
python manage.py runserver 8080