Metadata-Version: 2.1
Name: Flask-DJ
Version: 0.0.6
Summary: Django (mvc) structure for your Flask project
Home-page: https://github.com/AlexandrovRoman/Flask-DJ
Author: Alexandrov Roman
Author-email: AlexandrovRomanisi@ya.ru
License: UNKNOWN
Description: Since the flask has no strict project architecture, <br>
         it is easy for beginners to get confused when creating an application.<br>
         This library was created to help everyone who wants to create a small application.<br>
         
         ## Quick start
         ### Install:
         pip install Flask-DJ
         ### Start app:
         ```shell script
         startapp {your_app_name}
        ```
        <br>
         
         For those who didn't work out:
         ```python
        from Flask_DJ import start
        from os import getcwd
        
        yur_app_name = 'app'
        start(yur_app_name, getcwd())
        ```
         ### New app:
         
           ```shell script
         python manage.py starapp {app_name}
        ```
        
        ### Start server:
        
        ```shell script
         python manage.py runserver
        ```
        
Keywords: mvc django flask structure
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
