{"id":15471441,"url":"https://github.com/aisk/monologue","last_synced_at":"2025-05-01T10:51:35.473Z","repository":{"id":139777022,"uuid":"281720928","full_name":"aisk/monologue","owner":"aisk","description":"Simple blog system based on Django.","archived":false,"fork":false,"pushed_at":"2025-03-06T23:03:58.000Z","size":212,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T21:13:55.077Z","etag":null,"topics":["blog","django","django-app","markdown"],"latest_commit_sha":null,"homepage":"https://github.com/aisk/monologue","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aisk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-22T15:54:47.000Z","updated_at":"2024-12-08T00:53:27.000Z","dependencies_parsed_at":"2024-02-08T03:25:20.364Z","dependency_job_id":"7c94ac68-4678-463b-81b7-25b13331a66c","html_url":"https://github.com/aisk/monologue","commit_stats":{"total_commits":39,"total_committers":4,"mean_commits":9.75,"dds":"0.17948717948717952","last_synced_commit":"0a9a2c7d07b523c6df3709c5799ec9dc99712f7a"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aisk%2Fmonologue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aisk%2Fmonologue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aisk%2Fmonologue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aisk%2Fmonologue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aisk","download_url":"https://codeload.github.com/aisk/monologue/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251864111,"owners_count":21656288,"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":["blog","django","django-app","markdown"],"created_at":"2024-10-02T02:19:55.176Z","updated_at":"2025-05-01T10:51:35.449Z","avatar_url":"https://github.com/aisk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# monologue\n\n![Christopher Walken](https://upload.wikimedia.org/wikipedia/commons/1/18/Christopher_Walken_-_1984.jpg)\n\n[![PyPI version](https://badge.fury.io/py/django-monologue.svg)](https://pypi.python.org/pypi/django-monologue/)\n[![PyPI format](https://img.shields.io/pypi/format/django-monologue.svg)](https://pypi.python.org/pypi/django-monologue/)\n[![Join the chat at https://gitter.im/aisk/monologue](https://badges.gitter.im/aisk/monologue.svg)](https://gitter.im/aisk/monologue?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n\nSimple blog system based on Django. Can be used as standalone project or as a django app to be used in your django project.\n\n## Usage\n\n### Embed\n\nFor used as a django app in your django project:\n\n1, Install this package using `$ pip install django-monologue`, or using poetry / pipenv.\n\n2, Add 'monogule' to you `settings.py`'s `INSTALLED_APPS` field, it should be like this:\n\n```python\nINSTALLED_APPS = [\n    'django.contrib.admin',\n    'django.contrib.auth',\n    'django.contrib.contenttypes',\n    'django.contrib.sessions',\n    'django.contrib.messages',\n    'django.contrib.staticfiles',\n\n    ...\n\n    'monologue',  # \u003c- Add this.\n]\n```\n\n3, Run `$ python manage.py migrate monologue` to create database tables.\n\n4, Mount `monologue`'s urls to your poject's `urls.py`. It should be looks like this:\n\n```python\nfrom django.contrib import admin\nfrom django.urls import include, path\n\nurlpatterns = [\n    path('admin/', admin.site.urls),\n\n    ...\n\n    path('blog/', include('monologue.urls')), #  \u003c- Add this.\n]\n```\n\nThe mount path in this example above is `blog/`, you can change it to whatever you like.\n\n5, Run your server as normal, and check if monologue works fine. Admin site is registered too.\n\n### Standalone\n\nYou can clone this repo and use it just like a normal django project.\n\nAnd please notice that you should change the secret key in `settings.py` before use.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faisk%2Fmonologue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faisk%2Fmonologue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faisk%2Fmonologue/lists"}