Metadata-Version: 1.0
Name: django-pip-starter
Version: 1.0.1
Summary: Useful tool for quickstarting django projects.It creates virtual environment and preconfigured django project
Home-page: https://bitbucket.org/marltu/django-pip-starter
Author: Marius Grigaitis
Author-email: m@mar.lt
License: BSD
Description: Introduction
        ============
        
        Have you ever had problems deploying and configuring django project? This project
        removes headaches that you used to have when quick-starting django project, configuring
        environments, downloading packages and etc.
        
        Solution is based on pip and virtualenv and has minimal requirements
        
        Installation
        ============
        
        To install this package:
        
        ::
        
            pip install django-pip-starter
        
        
        Quick start
        ===========
        
        To create new project use the following command:
        
        ::
        
            django-pip-starter.py <dest>
        
        Where <dest> is destination folder where starter should create files.
        
        After than you can go into <dest> directory and type
        
        ::
        
            make
        
        This will download and setup development virtualenv, download latest stable django and create
        sqlite3 database, load initial data.
        
        To run development server you can use:
        
        ::
        
            make run
        
        Initial logins for django are u: admin p: admin
        
        You can also use default django commands as usual:
        
        ::
        
            project/manage.py runserver
        
        and etc.
        
        History
        =======
        
        Idea for this project came from Mantas Zimickas (sirex, https://bitbucket.org/sirex/django-starter/overview).
        This was based on zc.buildout solution. After some time using django-starter we had problems deploying it
        and Petras Zdanavičius (petraszd) made a fork of django-starter that used only pip. This was simple and elegant solution
        that Marius Grigaitis (marltu) expanded and packaged it into this project.
        
Keywords: django pip starter bootstrap initial create
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
