first commit

This commit is contained in:
2026-06-03 00:24:55 -05:00
parent 54941773dd
commit f2d5129720
4 changed files with 415 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import sys
import os
sys.path.insert(0, '/opt/adguard-dashboard')
# Activate virtualenv
activate_this = '/opt/adguard-dashboard/venv/bin/activate_this.py'
with open(activate_this) as f:
exec(f.read(), {'__file__': activate_this})
from dashboard import app as application