inital commit

This commit is contained in:
2026-05-17 18:29:30 -05:00
parent b827236fe2
commit 7c1e18bd59
4683 changed files with 159402 additions and 1 deletions

16
manage.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python
import os
import sys
def main() -> None:
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "site_builder.settings")
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError("Django not installed or unavailable.") from exc
execute_from_command_line(sys.argv)
if __name__ == "__main__":
main()