├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── TODO.md ├── accounts ├── __init__.py ├── admin.py ├── allauth_account_adapter.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_user_email.py │ ├── 0003_user_full_name.py │ └── __init__.py ├── models.py ├── templates │ └── accounts │ │ └── profile.html ├── tests.py ├── urls.py └── views.py ├── admin_dashboards ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── admin │ │ └── _index.html │ └── admin_dashboards │ │ ├── base.html │ │ └── dashboard_1.html └── views.py ├── chat ├── __init__.py ├── admin.py ├── apps.py ├── consumers.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_conversation_users_online_alter_message_conversation.py │ └── __init__.py ├── models.py ├── routing.py ├── templates │ └── chat │ │ └── conversation.html ├── tests.py ├── urls.py └── views.py ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── unfold.py ├── urls.py └── wsgi.py ├── dev_db ├── README.md ├── bin_sh.sh ├── cleanup_devdb.sh ├── docker-compose.yaml └── docker-entrypoint-initdb.d │ └── create-test-db.sql ├── manage.py ├── markdown_utils.py ├── news ├── __init__.py ├── admin.py ├── apps.py ├── management │ └── commands │ │ └── fake_news.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── news │ │ ├── _base.html │ │ ├── article.html │ │ └── index.html ├── tests │ ├── chat_tests.py │ └── conftest.py ├── urls.py └── views.py ├── package.json ├── pyproject.toml ├── tailwind.input.css ├── templates ├── _base.html ├── _partials.html ├── account │ └── email │ │ ├── base_message.html │ │ ├── base_message.txt │ │ └── email_confirmation_message.html ├── allauth │ ├── elements │ │ ├── alert.html │ │ ├── button.html │ │ └── fields.html │ └── layouts │ │ ├── base.html │ │ ├── entrance.html │ │ └── manage.html └── cotton │ ├── card.html │ ├── picture.html │ ├── surface.html │ └── youtube.html └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/TODO.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/allauth_account_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/allauth_account_adapter.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_alter_user_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/migrations/0002_alter_user_email.py -------------------------------------------------------------------------------- /accounts/migrations/0003_user_full_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/migrations/0003_user_full_name.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/templates/accounts/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/templates/accounts/profile.html -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/accounts/views.py -------------------------------------------------------------------------------- /admin_dashboards/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_dashboards/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/admin.py -------------------------------------------------------------------------------- /admin_dashboards/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/apps.py -------------------------------------------------------------------------------- /admin_dashboards/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/migrations/0001_initial.py -------------------------------------------------------------------------------- /admin_dashboards/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_dashboards/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/models.py -------------------------------------------------------------------------------- /admin_dashboards/templates/admin/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/templates/admin/_index.html -------------------------------------------------------------------------------- /admin_dashboards/templates/admin_dashboards/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/templates/admin_dashboards/base.html -------------------------------------------------------------------------------- /admin_dashboards/templates/admin_dashboards/dashboard_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/templates/admin_dashboards/dashboard_1.html -------------------------------------------------------------------------------- /admin_dashboards/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/admin_dashboards/views.py -------------------------------------------------------------------------------- /chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/admin.py -------------------------------------------------------------------------------- /chat/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/apps.py -------------------------------------------------------------------------------- /chat/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/consumers.py -------------------------------------------------------------------------------- /chat/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/forms.py -------------------------------------------------------------------------------- /chat/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/migrations/0001_initial.py -------------------------------------------------------------------------------- /chat/migrations/0002_conversation_users_online_alter_message_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/migrations/0002_conversation_users_online_alter_message_conversation.py -------------------------------------------------------------------------------- /chat/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chat/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/models.py -------------------------------------------------------------------------------- /chat/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/routing.py -------------------------------------------------------------------------------- /chat/templates/chat/conversation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/templates/chat/conversation.html -------------------------------------------------------------------------------- /chat/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/tests.py -------------------------------------------------------------------------------- /chat/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/urls.py -------------------------------------------------------------------------------- /chat/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/chat/views.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/unfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/config/unfold.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /dev_db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/dev_db/README.md -------------------------------------------------------------------------------- /dev_db/bin_sh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | docker exec -it dev_db_dbs_1 -------------------------------------------------------------------------------- /dev_db/cleanup_devdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/dev_db/cleanup_devdb.sh -------------------------------------------------------------------------------- /dev_db/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/dev_db/docker-compose.yaml -------------------------------------------------------------------------------- /dev_db/docker-entrypoint-initdb.d/create-test-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/dev_db/docker-entrypoint-initdb.d/create-test-db.sql -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/manage.py -------------------------------------------------------------------------------- /markdown_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/markdown_utils.py -------------------------------------------------------------------------------- /news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/admin.py -------------------------------------------------------------------------------- /news/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/apps.py -------------------------------------------------------------------------------- /news/management/commands/fake_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/management/commands/fake_news.py -------------------------------------------------------------------------------- /news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/models.py -------------------------------------------------------------------------------- /news/templates/news/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/templates/news/_base.html -------------------------------------------------------------------------------- /news/templates/news/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/templates/news/article.html -------------------------------------------------------------------------------- /news/templates/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/templates/news/index.html -------------------------------------------------------------------------------- /news/tests/chat_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/tests/chat_tests.py -------------------------------------------------------------------------------- /news/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/tests/conftest.py -------------------------------------------------------------------------------- /news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/urls.py -------------------------------------------------------------------------------- /news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/news/views.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tailwind.input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/tailwind.input.css -------------------------------------------------------------------------------- /templates/_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/_base.html -------------------------------------------------------------------------------- /templates/_partials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/_partials.html -------------------------------------------------------------------------------- /templates/account/email/base_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/account/email/base_message.html -------------------------------------------------------------------------------- /templates/account/email/base_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/account/email/base_message.txt -------------------------------------------------------------------------------- /templates/account/email/email_confirmation_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/account/email/email_confirmation_message.html -------------------------------------------------------------------------------- /templates/allauth/elements/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/allauth/elements/alert.html -------------------------------------------------------------------------------- /templates/allauth/elements/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/allauth/elements/button.html -------------------------------------------------------------------------------- /templates/allauth/elements/fields.html: -------------------------------------------------------------------------------- 1 | {% load tailwind_filters %} 2 | 3 | {{ attrs.form |crispy }} -------------------------------------------------------------------------------- /templates/allauth/layouts/base.html: -------------------------------------------------------------------------------- 1 | {% extends '_base.html' %} -------------------------------------------------------------------------------- /templates/allauth/layouts/entrance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/allauth/layouts/entrance.html -------------------------------------------------------------------------------- /templates/allauth/layouts/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/allauth/layouts/manage.html -------------------------------------------------------------------------------- /templates/cotton/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/cotton/card.html -------------------------------------------------------------------------------- /templates/cotton/picture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/cotton/picture.html -------------------------------------------------------------------------------- /templates/cotton/surface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/cotton/surface.html -------------------------------------------------------------------------------- /templates/cotton/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/templates/cotton/youtube.html -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/preludetech/django-seed/HEAD/uv.lock --------------------------------------------------------------------------------