A Dashboard for LXD/LXC
- Python3
- python3-virtualenv
- python3-pip
- lxd/lxc
- Create and activate virtual environment and install dependencies:
virtualenv venv
source venv/bin/activate
pip3 install -r requirements.txt
- Copy
.env-example
to.env
:
cp .env-example .env
- Run django server:
cd lxdash/
python3 manage.py runserver
python3 -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'