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