feat: Django project skeleton with pytest setup

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 13:46:53 +08:00
parent 1d2531a71f
commit f115a48c59
16 changed files with 149 additions and 0 deletions

20
manage.py Normal file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env python
import os
import sys
def main():
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. "
"Are you sure it's installed and available on your PYTHONPATH "
"environment variable is set? Did you forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)
if __name__ == "__main__":
main()