feat(server): added a new server script for desec, updates all dns'

This commit is contained in:
devaine 2025-08-10 17:20:10 -05:00
commit 2a7bd2c250
Signed by untrusted user who does not match committer: devaine
GPG key ID: 954B1DCAC6FF84EE
4 changed files with 120 additions and 0 deletions

11
server-scripts/desec/dev.bash Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
# If virtual environment does exist..
if [ ! -d .venv ]; then
python3 -m venv .venv
source .venv/bin/activate
pip install -U python-dotenv
pip install --upgrade pip # Update pip to the latest version
fi
echo 'Make sure to run ". .venv/bin/activate" to enter the development environment'