{"id":13725396,"url":"https://github.com/slav0nic/djangobb","last_synced_at":"2025-05-07T20:32:17.892Z","repository":{"id":1218136,"uuid":"1134997","full_name":"slav0nic/djangobb","owner":"slav0nic","description":"DjangoBB mirror. DjangoBB is a quick and simple forum which uses the Django Framework (written in Python language). Abbreviation DjangoBB stands for Django Bulletin Board. DjangoBB is distributed under the BSD license. ","archived":true,"fork":false,"pushed_at":"2023-09-05T18:58:10.000Z","size":2693,"stargazers_count":254,"open_issues_count":8,"forks_count":131,"subscribers_count":30,"default_branch":"master","last_synced_at":"2024-08-04T01:27:42.285Z","etag":null,"topics":["django","forum","python"],"latest_commit_sha":null,"homepage":"djangobb.org","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"travis-ci/travis-ci","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/slav0nic.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}},"created_at":"2010-12-03T12:12:49.000Z","updated_at":"2024-07-29T05:43:58.000Z","dependencies_parsed_at":"2023-01-11T15:50:13.068Z","dependency_job_id":null,"html_url":"https://github.com/slav0nic/djangobb","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/slav0nic%2Fdjangobb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slav0nic%2Fdjangobb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slav0nic%2Fdjangobb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slav0nic%2Fdjangobb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slav0nic","download_url":"https://codeload.github.com/slav0nic/djangobb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224645358,"owners_count":17346131,"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","forum","python"],"created_at":"2024-08-03T01:02:21.799Z","updated_at":"2024-11-14T15:31:16.570Z","avatar_url":"https://github.com/slav0nic.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"## What is DjangoBB?\n\nDjangoBB is a quick and simple forum which uses the Django Framework (written in Python language).\nAbbreviation DjangoBB stands for **Django** **B**ulletin **B**oard.\nDjangoBB is distributed under the BSD license.\n\n[![](https://pledgie.com/campaigns/16554.png?skin_name=chrome)](http://pledgie.com/campaigns/16554)\n[![](http://api.flattr.com/button/flattr-badge-large.png)](http://flattr.com/thing/93067/DjangoBB-Django-based-forum)\n[![](http://www.openhub.net/p/djangobb/widgets/project_thin_badge.gif)](http://www.openhub.net/p/djangobb?ref=sample)\n[![](https://drone.io/bitbucket.org/slav0nic/djangobb/status.png)](https://drone.io/bitbucket.org/slav0nic/djangobb/latest)\n[![](https://codecov.io/bitbucket/slav0nic/djangobb/coverage.svg?branch=default)](https://codecov.io/bitbucket/slav0nic/djangobb?branch=default)\n[![](http://requires.io/bitbucket/slav0nic/djangobb/requirements.svg?branch=default)](http://requires.io/bitbucket/slav0nic/djangobb/requirements/?branch=default)\n[![](https://img.shields.io/badge/irc-freenode-blue.svg)](https://webchat.freenode.net/?channels=djangobb)\n\n\n## The basic concept of the forum progress is:\n\n * the usage of various DBMS (MySQL, PostgreSQL, Oracle, SQLite)\n * the ease of integration into any Django project and the ease of installation\n * the usage of standard libraries for launching on conventional hostings with python support\n * user-friendly installation process\n * classic view of the forum like IPB, PhpBB, Punbb\n * easy forum setup\n * high speed\n * reliability\n\nAt the current stage of development the main object is the functional implementation of the PunBB forum, in the sequel it is projected to expand it significantly.\n\n## Documentation\n\nWill be soon...\n\n### Install\nDjangoBB consists of 2 parts:\n\n * [main app](http://bitbucket.org/slav0nic/djangobb)\n * [basic project](http://bitbucket.org/slav0nic/djangobb_project) (example of usage for quick install)\n\n\n#### Compatibility\n  * Python **2.7/3.3+**\n  * Django \u003e= **1.8**\n\nFore more info pls check ''requirements.txt'' and ''optional-requirements.txt'' files\n\n#### Preinstall requiments:\n\n* virtualenv\n* setuptools or pip\n\n#### Download latest source and install app:\n\n```\n#!sh\n wget https://bitbucket.org/slav0nic/djangobb/get/stable.tar.gz\n tar zxvf stable.tar.gz\n virtualenv .env\n cd \u003cplace_for_virtualenv_dir\u003e\n source .env/bin/activate\n # setup.py from djangobb app\n ./setup.py install\n # ./setup.py develop will be ok too if you are planning to upgrade djangobb from hg\n\n```\n\nDownload and setup basic project:\n\n```\n#!sh\n wget https://bitbucket.org/slav0nic/djangobb_project/get/tip.tar.gz\n tar zxvf tip.tar.gz\n cd slav0nic-djangobb_project-tip/\n pip install -r requirements.txt\n cd basic_project/\n touch local_settings.py\n # set DATABASE\n ./manage.py migrate\n ./manage.py collectstatic\n ./manage.py runserver\n```\n\nAlso you can add djangobb_forum to your django project as app and install requirements via pip.\n\n\n## User Support and demo\n`#djangobb` on freenode IRC\n\nForum:\n[support.djangobb.org](http://support.djangobb.org/)\n\nMercurial repository: [https://bitbucket.org/slav0nic/djangobb/](https://bitbucket.org/slav0nic/djangobb/)\nGit mirror: [http://github.com/slav0nic/DjangoBB/](http://github.com/slav0nic/DjangoBB/)\n\n## Migration from other forum engines:\n\n''will be soon...''\n\n[punBB-to-DjangoBB](http://github.com/Kami/punBB-to-DjangoBB) ''unofficial/inactive''\n\n[phpBB3 to DjangoBB](https://github.com/jedie/django-phpBB3) ''unofficial''\n\n## \"Why another forum?\"\n\nAs far`as we are concerned, there is no usable engine written in Django. In our humble opinion, existing implementations are too simple and have little function.\n\n## Sites using DjangoBB\n[DjangoBBPowered](https://bitbucket.org/slav0nic/djangobb/wiki/DjangoBBPowered)\n\n## Development\n\n### Translation:\nhttp://www.transifex.net/projects/p/djangobb/\n\n![translation progress](http://www.transifex.net/projects/p/djangobb/resource/default/chart/image_png)\n\n[Howto add new translation?](https://bitbucket.org/slav0nic/djangobb/wiki/HowtoAddNewTranslation)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslav0nic%2Fdjangobb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslav0nic%2Fdjangobb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslav0nic%2Fdjangobb/lists"}