Metadata-Version: 1.1
Name: senex
Version: 0.0
Summary: senex
Home-page: UNKNOWN
Author: Joel Dunham
Author-email: jrwdunham@gmail.com
License: UNKNOWN
Description: Senex
        ================================================================================
        
        Senex is a web application for high-level administration of
        `Online Linguistic Database (OLD)`_ applications.
        
        With Senex installed, you can do the following (either from a web interface or
        via the command line on your server):
        
        - install the OLD software and its dependencies
        - create new OLD instances (e.g., for particular lanaguages)
        - start and stop existing OLD instances
        
        
        Requirements
        --------------------------------------------------------------------------------
        
        Right now Senex will only work with Ubuntu servers. Versions 10.04 and 14.04
        are being targeted.
        
        The following must be installed in order for Senex to work. It can install the
        rest of its requirements and the rest of the OLD's requirements on its own.
        
        - Python 2.6 or 2.7
        - MySQL server
        - Apache 2
        - git
        
        
        TODO
        --------------------------------------------------------------------------------
        
        - Create a bash install script for Senex itself.
        
        - Add Python-crontab as a dependency in setup.py. From buildold:
        
            Python-crontab (https://pypi.python.org/pypi/python-crontab) should be
            installed if you want the OLD-restart cronjob to be created for you. But the
            script will still work without it.
        
        
        Creating a Development Setup for Senex
        --------------------------------------------------------------------------------
        
        If you don't have Python setuptools installed in your system Python, install it::
        
            $ sudo apt-get install python-setuptools
        
        If you don't have Python's virtualenv installed in your system Python, then
        install it using easy_install from setuptools::
        
            $ sudo easy_install virtualenv
        
        Create and activate a virtual environment::
        
            $ virtualenv env
            $ source env/bin/activate
        
        Download the Senex repo and install its dependencies::
        
            $ git clone https://github.com/jrwdunham/senex.git
            $ cd senex
            $ python setup.py develop
        
        Create Senex's database tables and serve it::
        
            $ initialize_senex_db development.ini
            $ pserve development.ini
        
        
        .. _`Online Linguistic Database (OLD)`: http://www.onlinelinguisticdatabase.org
        
        
        
        0.0
        ---
        
        -  Initial version
        
Keywords: web wsgi bfg pylons pyramid
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
