├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── django2go ├── __init__.py ├── admin.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── model2go.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── model.go ├── tests.py └── views.py ├── setup.py └── test_project ├── db.sqlite3 ├── manage.py ├── test_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── testapp.go └── testapp ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cd] 2 | *.vscode/ 3 | */.env/ 4 | build/ 5 | dist/ 6 | *.egg-info/ -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/README.md -------------------------------------------------------------------------------- /django2go/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django2go/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/admin.py -------------------------------------------------------------------------------- /django2go/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/apps.py -------------------------------------------------------------------------------- /django2go/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django2go/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django2go/management/commands/model2go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/management/commands/model2go.py -------------------------------------------------------------------------------- /django2go/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django2go/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/models.py -------------------------------------------------------------------------------- /django2go/templates/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/templates/model.go -------------------------------------------------------------------------------- /django2go/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/tests.py -------------------------------------------------------------------------------- /django2go/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/django2go/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/db.sqlite3 -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/test_project/urls.py -------------------------------------------------------------------------------- /test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/test_project/wsgi.py -------------------------------------------------------------------------------- /test_project/testapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp.go -------------------------------------------------------------------------------- /test_project/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/testapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/admin.py -------------------------------------------------------------------------------- /test_project/testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/apps.py -------------------------------------------------------------------------------- /test_project/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /test_project/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/models.py -------------------------------------------------------------------------------- /test_project/testapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/tests.py -------------------------------------------------------------------------------- /test_project/testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadnoodles/django2go/HEAD/test_project/testapp/views.py --------------------------------------------------------------------------------