Orgapp is a simple portable project management. The goal is to have an app that can be used offline as well as online.
Tasks are created for projects, but they are prioritized relatively to each other.
A project documentation is (for now, only) md files, tracked inside the repo.
Content of the projects tasks will (soon) be stored as part of the project to.
Repos can be git or mercurial repos, if they are not created previous to running the webui, they will be initialized.
Warning
Orgapp is still fresh and in development. Basic tests have been done, but not yet in production-like environment. Use at your own risks and after having done a lot of tests :)
- clone the repository to your desired path
git clone [email protected]:abondis/Orgapp.git
- and enter it
cd Orgapp
- quickstart
make start
- initialize the required submodules (only twitter-bootstrap)
git submodule update --init
- enter the src folder
cd src
- and initialize a python virtualenv (http://pypi.python.org/pypi/virtualenv)
virtualenv env . env/bin/activate
- install the python dependencies
pip install -r requirements.txt
- configuration is done in two times
- configure the app by itself (where to find the repositories, where to cache the rendering, where to store the database)
- setup authorized users with bottle-cork
- orgapp will read the file config-*.ini in the config/ folder
- it will use the first file it finds in the following
- config-dev.ini
- config-stage.ini
- config-prod.ini
- they have 3 sections:
- doc: specify where is the repository's documentation (path relative to the repository's root)
- tasks: full path to the tasks database
- repos: full paths to the git and hg repositories
- needed to grant access to the edit functions of Orgapp
python config/create_cork_users.py
- Orgapp gives an interface to handle tasks and view projects. For that you need to start its web interface, still from the src/ folder
python webui.py
- access to http://localhost:8080 , user: admin, password: test (cf create_cork_users)
- sync
- how to install on android
- tasks in files
- push/pull
- permit different markups
- fixes :)
- doc :)
- unittest
- cli
- Aurélien Bondis
- Pierre Paul Lefebvre