Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.3 KB

File metadata and controls

57 lines (37 loc) · 1.3 KB

CEUR WS Workshops

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.

Prerequisites

  • Python 3.10 or higher
  • pip (Python package installer)

Installation Instructions

1. Create a Virtual Environment

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

2. Activate the Virtual Environment

Activate the virtual environment. The command to activate the environment varies based on your operating system:

source django_env/bin/activate

3. Install the Project Dependencies

Once the virtual environment is activated, use pip to install the project dependencies from the provided wheel file.

pip install .

Running the server instructions.

Initial setup

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

Starting the server

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