Skip to content

3atmospheres/treeio

 
 

Repository files navigation

Build Status

========================== Tree.io Business Management Platform

Tree.io is a powerful business management platform with tons of great features including integrated Project Management, Help Desk (support ticketing) and CRM modules. For a full list of features please see http://www.tree.io

Click here to watch a video of our lightning talk presentation at Djangocon Europe 2012.

For FAQ see the Tree.io community site http://www.tree.io/community/

There is also a pre-built micro Amazon AMI Image available which will run on Amazon's Free Usage Tier for 1 year.

License

Tree.io is licensed under the MIT License. See the LICENSE file.

Installation on Ubuntu or Debian with MySQL

Although you can install on most any UNIX system very easily, debian based distros are easier due to their package management.

You can also install on Max OSX or with other databases aside from MySQL very easily.

Install any dependencies

  1. Update your local cache sudo apt-get update
  2. Upgrade your system sudo apt-get upgrade (Recommended but optional)
  3. sudo apt-get install python build-essential python-dev
  4. sudo apt-get build-dep python-lxml python-imaging
  5. sudo apt-get install git python-flup python-pip

Install services (In Production)

  1. Install database sudo apt-get install mysql-server (Aside from MySQL you can also use Postgre, SQLite or OracleDB)
  2. Install web server sudo apt-get install nginx

Alternatively you can use Apache, see this community post for an example configuration.

Create a clone of this repository

  1. Clone the repo by running: git clone https://github.com/treeio/treeio.git
  2. Install dependencies: pip install -r requirements.pip
  3. Run the patch: python related_fields_patch.py

Install the database (Example showing MySQL)

$ mysql -u username -p
       > create database database_name;
       > grant all privileges on database_name.* to some_user@localhost identified by 'some_password';
       > \q
  1. Install your database python manage.py installdb
  2. Setup initial data python manage.py loaddata data.json

Test install

  1. Run the built-in Django server python manage.py runserver
  2. In your browser go to http://localhost:8000
  3. Log in using username: admin and password: admin
  4. Profit!

Next steps (In Production)

  • Configure nginx
  • Set up a mailserver
  • Set up a domain to point to your new server (Set A Record)

Support

Commercial installation and support is available from Tree.io Ltd, London, UK. Our community support forum is the first stop for any questions http://www.tree.io/community Please see http://www.tree.io/ or contact info@tree.io for more details.

Acknowledgements

  • Greek translation contributed by Nick Apostolakis http://nick.oncrete.gr
  • Brasilian translation contributed by Davi Ribeiro
  • Simple Chinese translation contributed by @sunliwen
  • French translation contributed by morago.com
  • An achievements addon is available courtesy of Pascal Mouret as shown in our Djangocon Europe video.