├── .github └── workflows │ ├── build-and-test.yml │ └── publish.yml ├── .gitignore ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── src └── django_tui │ ├── __about__.py │ ├── __init__.py │ └── management │ ├── __init__.py │ └── commands │ ├── __init__.py │ ├── ish.py │ ├── trogon.scss │ └── tui.py └── tests ├── __init__.py ├── manage.py ├── settings.py ├── test_tui.py └── testapp ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/django_tui/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/src/django_tui/__about__.py -------------------------------------------------------------------------------- /src/django_tui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/src/django_tui/__init__.py -------------------------------------------------------------------------------- /src/django_tui/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_tui/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_tui/management/commands/ish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/src/django_tui/management/commands/ish.py -------------------------------------------------------------------------------- /src/django_tui/management/commands/trogon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/src/django_tui/management/commands/trogon.scss -------------------------------------------------------------------------------- /src/django_tui/management/commands/tui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/src/django_tui/management/commands/tui.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_tui.py: -------------------------------------------------------------------------------- 1 | def test_tui(): 2 | assert True 3 | -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/testapp/asgi.py -------------------------------------------------------------------------------- /tests/testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/testapp/settings.py -------------------------------------------------------------------------------- /tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/testapp/urls.py -------------------------------------------------------------------------------- /tests/testapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anze3db/django-tui/HEAD/tests/testapp/wsgi.py --------------------------------------------------------------------------------