Metadata-Version: 1.1
Name: djangosourcecontrol
Version: 1.1
Summary: A simple Django app to conduct create Web-based Python projects and files. Powered by KnockoutJs and django-rest-framework
Home-page: https://github.com/kull2222/DjangoSourceControl/
Author: Daniel J Pepka
Author-email: pepkad@wsu.edu
License: gpl-3.0
Description: =====
        DjangoSourceControl
        =====
        
        DjangoSourceControl is a simple Django app to create Web-based Python files and projects.
        For each project, users can add, update, and create python projects, files, and versions.
        
        Note: Django source control has a unit test suite which can be ran by 'python manage.py test' to run the repo and api authentication tests.
        
        Quick start
        -----------
        
        1. Add "djangosourcecontrol" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'djangosourcecontrol',
            ]
        
        2. Include the djangosourcecontrol URLconf in your project urls.py like this::
        
            url(r'^djangosourcecontrol/', include('djangosourcecontrol.urls')),
        
        3. Run `python manage.py migrate` to create the djangosourcecontrol models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/
           to assign the can_add_project, and/or the can_run_project to user.
        
        5. Visit http://127.0.0.1:8000/djangosourcecontrol/ to start creating projects.
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
