Metadata-Version: 2.1
Name: django-static-ace-builds
Version: 1.4.12.0
Summary: Django application contain ace-builds(Ajax.org Cloud9 Editor) static files.
Home-page: https://github.com/zencore-cn/zencore-issues
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # django-static-ace-builds
        
        Django application contain ace-builds(Ajax.org Cloud9 Editor) static files. See details about the static resources at https://ace.c9.io/.
        
        ## Install
        
        ```
        pip install django-static-ace-builds
        ```
        
        ## Usage
        
        **pro/settings.py**
        
        ```python
        INSTALLED_APPS = [
            ...
            "django_static_ace_builds",
            ...
        ]
        ```
        
        **app/template/app/index.html**
        
        ```html
        {% load static %}
        
        <script src="{% static "ace-builds/ace.js" %}"></script>
        ```
        
        ## About releases
        
        1. The first three number is the same with ace-builds project's version.
        1. The fourth number is our release number, it's optional.
        
        ## Releases
        
        ### v1.4.12.0 2020/08/31
        
        - First release.
        
Keywords: django-static-ace-builds
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
