{"id":14972654,"url":"https://github.com/django-id/website","last_synced_at":"2025-10-26T19:31:53.815Z","repository":{"id":25757374,"uuid":"106092629","full_name":"django-id/website","owner":"django-id","description":"Code that power Django Indonesia","archived":false,"fork":false,"pushed_at":"2023-10-18T01:48:51.000Z","size":1619,"stargazers_count":30,"open_issues_count":8,"forks_count":17,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-01-31T23:04:53.063Z","etag":null,"topics":["django","django-framework","python","python3"],"latest_commit_sha":null,"homepage":"http://www.django.id","language":"HTML","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/django-id.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-07T11:28:58.000Z","updated_at":"2024-08-05T15:48:40.000Z","dependencies_parsed_at":"2023-01-14T03:21:29.163Z","dependency_job_id":null,"html_url":"https://github.com/django-id/website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-id%2Fwebsite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-id%2Fwebsite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-id%2Fwebsite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/django-id%2Fwebsite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/django-id","download_url":"https://codeload.github.com/django-id/website/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238394323,"owners_count":19464583,"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":["django","django-framework","python","python3"],"created_at":"2024-09-24T13:47:16.843Z","updated_at":"2025-10-26T19:31:47.004Z","avatar_url":"https://github.com/django-id.png","language":"HTML","funding_links":["https://www.paypal.me/AmitMerchant"],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003ca href=\"http://www.django.id\"\u003e\u003cimg src=\"http://i.pi.gy/j33Ng.png\" alt=\"Django Indonesia\" width=\"200\"\u003e\u003c/a\u003e\n  \u003cbr\u003e\n  Django Indonesia\n  \u003cbr\u003e\n\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003eClean and simple forum app made for Django-id Community. Built on top of \u003ca href=\"https://www.djangoproject.com/\" target=\"_blank\"\u003eDjango\u003c/a\u003e and \u003ca href=\"\"\u003eMarkdown\u003c/a\u003e.\u003c/h4\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://badge.fury.io/js/electron-markdownify\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/pyversions/Django.svg\"\n         alt=\"Gitter\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://gitter.im/amitmerchant1990/electron-markdownify\"\u003e\u003cimg src=\"https://img.shields.io/pypi/status/Django.svg\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://saythanks.io/to/amitmerchant1990\"\u003e\n      \u003cimg src=\"https://img.shields.io/packagist/l/doctrine/orm.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://www.paypal.me/AmitMerchant\"\u003e\n    \u003cimg src=\"https://img.shields.io/website-up-down-green-red/http/shields.io.svg?label=django.id\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\u003cbr\u003e\n\n![screenshot](http://i.pi.gy/JDDdP.png)\n\n## Key Features\n\n* LivePreview Editor - Make changes, See changes\n  - Instantly see what your Markdown documents look like in HTML as you create them.\n* Built on top of Django Framework and Python 3.X\n* GitHub Flavored Markdown  \n* Syntax highlighting\n* Use [SASS](http://sass-lang.com/)\n* Use [Bulma](https://bulma.io/), modern front-end framework\n* [Pygments](http://pygments.org/) Support\n* Simple and clean UI/UX\n* ~~No-bullshit~~ No-nonsense, get the job done.\n* Made with love and passion\n\n\n## How To Use\n\nTo clone and run this application, you'll need [Git](https://git-scm.com), [virtualenv](http://www.pythonforbeginners.com/basics/how-to-use-python-virtualenv) and [Python](https://www.python.org/) installed on your computer. I assume you already setup the django environment on your machine, if not yet, then Google is your friend. From your command line:\n\n```bash\n# Create virtual environment using virtualenv\n$ virtualenv -p python3 envname\n\n# Go into virtual environment folder\n$ cd envname\n\n# Activate virtualenv\n$ source bin/activate\n\n# Clone this repository\n$ git clone https://github.com/django-id/website.git django_id\n\n# Go into the repository\n$ cd django_id\n\n# Install requirements\n$ pip install -r requirements.txt\n\n# Migrate the databse\n$ python manage.py makemigrations \u0026\u0026 python manage.py migrate\n\n# Run the app\n$ python manage.py runserver\n```\n\nIf you have docker installed. you can simply run following command to run with docker.\n\n```\n$ docker-compose build                  # Build docker images for the first time.\n$ docker-compose up                     # Running the project.\n$ docker-compose run web sh runtest.sh  # Run the test.\n```\n\nNote: If those commands is not working, please open issue with detailed error messages.\n\n## Download\n\nYou can [download](https://github.com/django-id/website/archive/master.zip) latest relase version of Django ID also.\n\n## Credits\n\nThis software uses code from several open source packages.\n\n- [Python](https://www.python.org/)\n- [Django](https://www.djangoproject.com/)\n- [MarkdownX](https://github.com/neutronX/django-markdownx)\n- [Pygments](http://pygments.org/)\n- [Bulma](https://bulma.io/)\n- And soo many other great and amazing open source projects!\n\n## To-Do List\n\n- Add emojis\n- Create user mention/tagging feature\n- Create notification system\n- Create proper paginations\n- Fixing its responsiveness\n- Polishing its UI/UX\n- ...\n\n## Changelog\n\n- v0.2 : Add user stats (Total posts and total threads) on profile page\n- v0.1 : Intial release\n\n#### License\n\nMIT\n\n---\n\n\u003e [Facebook](https://www.facebook.com/groups/DjangoID/) \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e [Github](https://github.com/django-id/) \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e [Slack](http://django-id.herokuapp.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjango-id%2Fwebsite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdjango-id%2Fwebsite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdjango-id%2Fwebsite/lists"}