Coder Social home page Coder Social logo

pydici's Introduction

Pydici is a software for consulting/IT services company to manage:
- commercial leads workflow (from business detection to sales)
- workload schedule to forecast people activity

It is written in Python using the Django framework.


LICENSE
=======

Pydici is available under the GNU Affero Public License v3 or newer (AGPL 3+).
http://www.gnu.org/licenses/agpl-3.0.html

AUTHOR
======

Sébastien Renard ([email protected]).


INSTALLATION
============

Pydici can be installed as any Django application. Just drop the code somewhere
and setup Apache.

Prerequisite:
- django (1.1.x is recommended)
- matplotlib

Here's a sample Apache/mod_python config file. Pydici code live
is /var/www/pydici and application is published as '/pydici/'.
This prefix (pydici) can be changed in settings.py. Make sure it's
consistent with you Apache/mod_python setup.

--------------8<-------------------------------
LoadModule python_module modules/mod_python.so


<Location "/pydici/">
   SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE pydici.settings
    PythonDebug On
    PythonPath "['/var/www/pydici', '/var/www/'] + sys.path"
</Location>

<Location "/pydici/media/">
    SetHandler None
</Location>

Alias /pydici/media /var/www/pydici/media
--------------8<-------------------------------

Then, please read and update settings.py file according to your configuration. If you want to use 
apache authentication, please add pydici.authenticate.RemoteUserAuthMiddleware
in your MIDDLEWARE_CLASSES and update you AUTHENTICATION_BACKENDS.
Since Django 1.1, this is not necessary. Please see Django docs : 
http://docs.djangoproject.com/en/dev/howto/auth-remote-user/#howto-auth-remote-user

Finally, to initialise database, go to pydici directory and run "./manage.py syncdb"

pydici's People

Contributors

digitalfox avatar g76r avatar tuxella avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.