Welcome to the CEUR WS Workshops project. This guide will help you set up your environment and install the necessary dependencies using the provided wheel file.
- Python 3.10 or higher
- pip (Python package installer)
First, create a virtual environment to ensure that the dependencies are installed in an isolated environment, preventing any potential conflicts with other projects.
python -m venv django_env
Activate the virtual environment. The command to activate the environment varies based on your operating system:
source django_env/bin/activate
Once the virtual environment is activated, use pip to install the project dependencies from the provided wheel file.
pip install .
After updating the server, you need to create a new, empty database. To do this, run the following commands:
python3 manage.py makemigrations
python3 manage.py migrate
After this the server can be run through the following command:
python3 manage.py runserver
Or
python3 manage.py runserver 0.0.0.0:80