Metadata-Version: 2.1
Name: django-babel-boilerplate
Version: 0.0.5
Summary: A package which create django babel boilerplate.
Home-page: https://www.navaneethnagesh.com
Author: Navaneeth Nagesh
Author-email: navaneethnagesh56@gmail.com
License: UNKNOWN
Description: # Django Babel Package
        
        This is a package to create a boilerplate of django and babel with a efficient method of file structure
        
        # GET STARTED
        
        In your terminal run the command..
        
        ``$ pip install django-babel-boilerplate``
        
        To create a project,
        
        ``$ django-babel [project_name]``
        
        The file structure would look like
        
        ``
        - [root-folder]
            - settings
                - base.py
                - local.py
                - production.py
                - staging.py
            - \_\_init\_\_.py
            - urls.py
            - views.py
            - wsgi.py
        - static
            - common
                - js
                - scss
            - dist
                - css
                - images
                - js
            - home
                - js
                - scss
            - svg
        - templates
            - index.html
        - .babelrc
        - .gitignore
        - manage.py 
        - package.json
        - requirements-server.txt
        - requirements.txt
        ``
        To install all the required node modules.
        
        ``$ npm install``
        
        To run the server, babel and the sass
        
        ``$ npm start``
        
        Your good to go..
Keywords: Django,babel,sass
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
