Initial import

This commit is contained in:
Joshua Laymon
2025-08-12 20:50:46 -05:00
commit e6cb7e91aa
29 changed files with 886 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env python
import os, sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'illustrations.settings')
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
if __name__ == '__main__':
main()