The code that runs davixxa.net
# Clone the repository
git clone https://github.com/Davixxa/WebsiteProj.git
cd WebsiteProj
The easiest way is to run it inside a Docker container
For running the entire stack
docker-compose up
For running just the web-app
docker build . -t dev
docker run dev
# Create a virtual environment
virtualenv venv -p python3.11
Activate it using one of the following commands:
# Windows
.\venv\Scripts\activate
# Linux / OSX
source venv/bin/activate
Run the dev server
python manage.py runserver