README.md.orig 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Misago
  2. ======
  3. Misago is an internet forum application written in Python and using Django as its foundation.
  4. Visit project homepage for discussion and demo: <http://misago-project.org>
  5. The Tao AKA Mission Statement
  6. -----------------------------
  7. I want software focused on enabling smooth flow of information between forum members. I don't want to build a "Facebook CMS" that contains lots of extra functionality like user galleries, blogs or user walls. Posting and replying in threads is the only focus of Misago with additional features implemented to improve forum users and staff experience.
  8. Secondary goal is making Misago a viable foundation for building and maintaining long-term discussion forums for administrators. Misago trades "casual admin" friendliness for advanced features aimed for use by web developers looking for a tool to build forums for their site.
  9. Finally while Misago is built using Django, it's not a "Django application" and it won't integrate with existing Django projects. This is the result of design decision to use custom users/session/auth/permissions functionality instead of Django native applications - however in the future Misago will provide a web API allowing you to add Misago-powered features to your website.
  10. Dependencies
  11. ------------
  12. * [Django](http://djangoproject.com)
  13. * [Django Debug Toolbar](https://github.com/django-debug-toolbar/django-debug-toolbar)
  14. * [Django-MPTT](https://github.com/django-mptt/django-mptt)
  15. * [Coffin](https://github.com/coffin/coffin)
  16. * [Jinja2](https://github.com/mitsuhiko/jinja2)
  17. * [Markdown](http://pypi.python.org/pypi/Markdown)
  18. * [path](http://pypi.python.org/pypi/path.py)
  19. * [Pillow](http://pypi.python.org/pypi/Pillow/)
  20. * [pyTZ](http://pypi.python.org/pypi/pytz/2012h)
  21. * [reCAPTCHA-client](http://pypi.python.org/pypi/recaptcha-client)
  22. * [South](http://south.aeracode.org)
  23. * [Unidecode](http://pypi.python.org/pypi/Unidecode)
  24. Installation
  25. ------------
  26. The very first thing that needs to be done is ensure you have all the dependencies installed. Most can be installed through `pip`.
  27. Misago comes with the "deployment" Python module that contains empty Misago configuration and default Django WSGI container for you to use in your deployments.
  28. After you set low-level configuration of Misago (`settings/settings.py`), fire the following commands on manage.py through the Python executable:
  29. <<<<<<< HEAD
  30. * __initmisago__ - creates DB structure for Misago and populates it with default data
  31. * __adduser__ Admin admin@example.com password --admin__ - this will create first admin user
  32. =======
  33. * __startmisago__ - creates DB structure for Misago and populates it with default data
  34. * __adduser Admin admin@example.com password --admin__ - this will create first admin user
  35. >>>>>>> develop
  36. Misago stands on shoulders of Django and Django documentation covers deployment of apps extensively:
  37. https://docs.djangoproject.com/en/dev/howto/deployment/
  38. Don't forget to set up maintenance cronjobs to keep your database clean, look into cront.txt file to see what crons to set up.
  39. While Misago will run without cache set up, you are strongly encouraged to set one up for it. Even if you choose not to run one, you will still need to set a default one (such as dummy caching).
  40. ### WARNING!
  41. Misago is not production ready! Don't ever use it in anything thats anywhere close to production enviroment!
  42. Updating
  43. --------
  44. You can use **updatemisago** command to update your forums database to latest version *unless* you are updating from 0.1 which is incompatibile with 0.2 and later releases.
  45. If you want to move data from 0.1 to 0.2, install 0.2 to new database, then add connection to 0.1 database in your settings.py and name it "deprecated". When you are ready, use migratefrom01 management command to move data from 0.1 database over to 0.2.
  46. Contributing
  47. ------------
  48. Misago is open source project. You are free to submit pull requests against master branch, but I request all interested in contributing to project to register on project forums and participate in [development discussion](http://misago-project.org/category/development-discussion-17/).
  49. Finally, you can participate in discussion on [project forums](http://misago-project.org). Your feedback means much more for the project, don't keep it to yourself!
  50. Authors
  51. -------
  52. **Rafał Pitoń**
  53. + http://rpiton.com
  54. + http://github.com/ralfp
  55. + https://twitter.com/RafalPiton
  56. Copyright and license
  57. ---------------------
  58. Misago Copyright (C) 2012 Rafał Pitoń
  59. This program comes with ABSOLUTELY NO WARRANTY.
  60. This is free software, and you are welcome to redistribute it
  61. under certain conditions.
  62. For the complete license, see LICENSE.txt