Skip to content

Davixxa/WebsiteProj

Repository files navigation

WebsiteProj

The code that runs davixxa.net

Installation

# Clone the repository
git clone https://github.com/Davixxa/WebsiteProj.git
cd WebsiteProj

Using Docker

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

Using Virtualenv

# 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