0a18b94d84
- Flask + SQLite web app with user authentication - Zone management: create/delete zones, edit raw zone files - Record management: add/delete A/AAAA/CNAME/MX/TXT/NS/PTR/SRV/CAA records - Service control: start/stop/restart/reload BIND via systemctl/rndc - Configuration editor: edit named.conf.options/local with syntax validation - DNS query testing: online dig tool - Audit log: all operations logged with user/timestamp - BIND9 backend, listening on port 53
12 lines
299 B
Python
12 lines
299 B
Python
#!/usr/bin/env python3
|
|
"""Initialize the DNS Web Manager database."""
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
from app import app, db, seed_admin
|
|
|
|
with app.app_context():
|
|
db.create_all()
|
|
seed_admin()
|
|
print("Database initialized successfully")
|