Metadata-Version: 1.1
Name: openedoo
Version: 1.1.0.19
Summary: openedoo is backend service for education base on flask
Home-page: http://openedoo.org
Author: Openedoo Official
Author-email: UNKNOWN
License: MIT
Description: # WELCOME TO OPENEDOO
        
        ## openedoo-beta in pip
        ```
        pip install openedoo
        
        and run in your terminal
        
        openedoo install
        
        ```
        ## how to use
        
        ```bash
        git clone https://github.com/openedoo/openedoo
        
        pip install -r requirements.txt
        ```
        
        ### Migrate Database
        ```bash
        python manage.py db init
        python manage.py db migrate
        python manage.py db upgrade
        python manage.py --help
        ```
        
        ### Create New Module
        ```bash
        python manage.py module create -n "module_name"
        ```
        ```bash
        python manage.py module create -n "module_name" --remote "github_repo_url"
        ```
        
        ### Runserver
        ```bash
        python manage.py run
        ```
        
        ## Docker Compose
        
        ### Setup
        ```bash
        $ docker-compose up -d
        $ curl
        ```
        
        ### Stop Services
        ```bash
        $ docker-compose stop
        ```
        
        ### Run And Play
        ```bash
        $ docker-compose start
        ```
        
        ### Create Module
        ```bash
        $ docker-compose exec od python manage.py create "test"
        ```
        
        ### Manage Module
        ```bash
        $ docker-compose stop od
        $ docker-compose run od bash
        [from_od]$ openedoo module create -n "test"
        [from_od]$ opendoo module remove test
        [from_od]$ opendoo module install https://github.com/openedoo/module_hello
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
