{"id":20200412,"url":"https://github.com/nickjer/django-chat","last_synced_at":"2025-07-04T03:06:37.386Z","repository":{"id":70912253,"uuid":"21338311","full_name":"nickjer/django-chat","owner":"nickjer","description":"A personal Django educational project to help me better understand the MVC framework.","archived":false,"fork":false,"pushed_at":"2014-07-15T05:16:37.000Z","size":244,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-03T08:45:32.260Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nickjer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-06-30T03:18:17.000Z","updated_at":"2016-04-18T15:28:26.000Z","dependencies_parsed_at":"2023-02-21T21:00:17.529Z","dependency_job_id":null,"html_url":"https://github.com/nickjer/django-chat","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nickjer/django-chat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickjer%2Fdjango-chat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickjer%2Fdjango-chat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickjer%2Fdjango-chat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickjer%2Fdjango-chat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nickjer","download_url":"https://codeload.github.com/nickjer/django-chat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nickjer%2Fdjango-chat/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263437345,"owners_count":23466368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-14T04:43:34.176Z","updated_at":"2025-07-04T03:06:37.364Z","avatar_url":"https://github.com/nickjer.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-chat\n===========\n\nA terrible chat application to help me better explore the django framework.\n\n## Key features\n\n* AJAX support for realtime updates\n* Nothing else so far, since this is an educational tool for myself...\n\n## Installation\n\nIn order to install copy over the \"chat\" directory from GitHub.\n\nAdd `chat` to your `INSTALLED_APPS`:\n\n    INSTALLED_APPS = (\n        ...\n        'chat',\n        ...\n    )\n\nHook this app into your ``urls.py``:\n\n    urlpatterns = patterns('',\n        ...\n        url(r'^your-url/$', include('chat.urls', namespace=\"chat\")),\n        ...\n    )\n\nRun `python manage.py migrate` to create the chat models.\n\nStart the development server and visit http://127.0.0.1:8000/chat/ to participate in the chat.\n\n## Usage\n\nThis Chat app provides a simple template tag and override-able template that does the work of integrating the chat CSS, JavaScript, and HTML into your site.\n\nTo place the chat widget in a template, simply insert the following within it:\n\n    {% load chat %}\n    {% show_chat %}\n\n## Customization\n\nThis chat app is designed to be customizable.\n\nThe chat template tag optionally takes the argument the name of the template to load and override the default template:\n\n    {% load chat %}\n    {% show_chat 'your_template.html' %}\n\nA custom template can extend from the master chat template chat/chat.html. There are several blocks which may be overridden for the purpose of customization. For instance, one could got about adding a more up to date JQuery library or plugging in a new CSS layout:\n\n    # your_template.html\n    {% extends 'chat/chat.html' %}\n    \n    {% block jquery_js %}\n        \u003cscript src=\"{{ STATIC URL }}/js/my.newer.jquery.js\"\u003e\u003c/script\u003e\n    {% endblock %}\n    \n    {% block chat_css %}\n        \u003clink href=\"{{ STATIC URL }}/css/cooler.theme.css\" type=\"text/css\" media=\"all\" rel=\"stylesheet\" /\u003e\n    {% endblock %}\n\nor you can simply replace the static files themselves.\n\n## Versions\n\nThis is the only version.\n\n- all versions require Python3\n- all versions require Django1.6 (not tested below)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickjer%2Fdjango-chat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnickjer%2Fdjango-chat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnickjer%2Fdjango-chat/lists"}