This repository has been archived on 2026-03-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
test-ci/manage.py
gqt a8af8d1b64
Some checks failed
Build and Push Docker Image / build (push) Failing after 2m47s
init: django project with CI pipeline
2026-02-08 12:40:31 +08:00

12 lines
268 B
Python

#!/usr/bin/env python
import os
import sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app.settings')
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)
if __name__ == '__main__':
main()