Metadata-Version: 1.0
Name: pysapp
Version: 0.1.1
Summary: A pysmvt supporting application
Home-page: http://pypi.python.org/pypi/pysapp/
Author: Randy Syring
Author-email: randy@rcs-comp.com
License: BSD
Description: 
        Introduction
        ---------------
        
        pysapp is a library designed as a "supporting application" for
        `pysmvt <http://pypi.python.org/pypi/pysmvt/>`_ applications.
        
        Example applications will be avilable soon, for now, please follow the steps
        below to get your own default application up and running.
        
        Steps for Installation
        ----------------------
        
        #. Install Python
        #. install setuptools (includes easy_install)
        #. install virtualenv `easy_install virtualenv`
        #. Create a new virtual environement `virtualenv myproj-staging --no-site-packages`
        #. `Activate the virtual environment (os dependent) <http://pypi.python.org/pypi/virtualenv#activate-script>`_
        #. install pysapp & dependencies `easy_install pysapp`
        
        Steps for creating a working application
        -----------------------------------------
        
        Note: the `pysmvt` command is installed when you install pysapp, which has
        pysmvt as a requirement.
        
        #. `cd myproj-staging`
        #. `mkdir src`
        #. `cd src`
        #. `pysmvt project -t pysapp <myapp>` replace <myapp> with your project name
        #. answer the questions that come up
        #. write down "Login Details", referred to hereafter as <user> & <pass>
        #. `cd <myapp>-dist`
        #. `python setup.py -q develop`
        #. `cd <myapp>`
        #. `pysmvt broadcast initdb` setup the database tables
        #. `pysmvt broadcast initapp` setup the database tables
        #. `pysmvt broadcast initmod <user>` let modules set themselves up, use the
        settings profile for your user
        #. `pysmvt serve <user>` run a development http server with the user's settings
        profile
        #. point your browser at http://localhost:5000/
        
        Creating a New Application Module
        ---------------------------------
        This step creates a Application Module directory structure in <myapp>/modules/<mymod>:
        
        `pysmvt module <mymod>`
        
        where <mymod> is the name of the module you want to create
        
        Questions & Comments
        ---------------------
        
        Please visit: http://groups.google.com/group/pyslibs
        
        Current Status
        ---------------
        
        The code for 0.1 is pretty stable.  API, however, will be changing in 0.2.
        
        The unstable `development version
        <https://svn.rcslocal.com:8443/svn/pysmvt/pysapp/trunk/#egg=pysapp-dev>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
