No Description

Ralfp 0da75f3cb0 Use correct routes when linking to forums or threads. 12 years ago
deployment 6af3a722a2 Added missing import 12 years ago
media 769b1994e9 Logo saw tweaky tweak! 12 years ago
misago 41af554404 Fixed potential name conflicts in ACL's 12 years ago
static fea19948bf Better AJAX error handling. 12 years ago
templates 0da75f3cb0 Use correct routes when linking to forums or threads. 12 years ago
.gitignore a2d00579b7 updated gitignore 12 years ago
.travis.yml 149844863f Adding Travis CI to Misago 12 years ago
LICENSE.txt 7e0bf1a15c Updated license to Gnu GPL v3 12 years ago
README.md f07bf4fbe4 Fixed readme 12 years ago
cron.txt 51e0122db0 Reordered default Cron a little 12 years ago
manage.py c7f9c64f3a Fixed manage.py to point at deployment module instead of my dev module using internally for development. 12 years ago
requirements.txt 149844863f Adding Travis CI to Misago 12 years ago

README.md

Misago

Misago is an internet forum application written in Python and using Django as its foundation. Visit project homepage for discussion and demo: http://misago-project.org

The Tao AKA Mission Statement

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.

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.

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.

Dependencies

Installation

The very first thing that needs to be done is ensure you have all the dependencies installed. Most can be installed through pip.

Misago comes with the "deployment" Python module that contains empty Misago configuration and default Django WSGI container for you to use in your deployments.

After you set low-level configuration of Misago (settings/settings.py), fire the following commands on manage.py through the Python executable:

  • startmisago - creates DB structure for Misago and populates it with default data
  • adduser Admin admin@example.com password --admin - this will create first admin user

Misago stands on shoulders of Django and Django documentation covers deployment of apps extensively: https://docs.djangoproject.com/en/dev/howto/deployment/

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.

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).

WARNING!

Misago is not production ready! Don't ever use it in anything thats anywhere close to production enviroment!

Updating

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.

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.

Contributing

Misago is open source project. You are free to submit pull requests against master branch, and use issues system to report bugs, propose improvements and new features.

Finally, you can participate in discussion on project forums. Your feedback means much more for the project, don't keep it to yourself!

Authors

Rafał Pitoń

Copyright and license

Misago Copyright (C) 2012 Rafał Pitoń This program comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute it under certain conditions.

For complete license, see LICENSE.txt