コード例 #1
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_api_view(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/restfull/api_view.py',
                               params)
    make_file(path + '/api/v1/views/' + params.get('_nclass') + '.py',
              new_file)
コード例 #2
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_view(path, dirname, params):
    """
    """
    try:
        os.makedirs(path + '/web/static/styles')
        os.makedirs(path + '/web/static/scripts')
        os.makedirs(path + '/web/static/images')
        os.makedirs(path + '/web/templates')

        new_file = render_template(dirname + '/templates/front/app.py', params)
        make_file(path + '/web/app.py', new_file)

        new_file = render_template(dirname + '/templates/front/index.html',
                                   params)
        make_file(path + '/web/templates/0-index.html', new_file)

        append_write(path + '/web/__init__.py')
        append_write(path + '/web/static/styles/0-style.css')
        append_write(path + '/web/static/scripts/0-script.js')

    except OSError:
        print("Creation of the directory %s failed" %
              "web/ web/static,styles,scripts web/templates")
    else:
        print("Successfully created the directory %s" %
              "web/ web/static,styles,scripts web/templates")
コード例 #3
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_front_view(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/front/index_name.html',
                               params)
    make_file(path + '/web/templates/' + params.get('_nfront') + '.html',
              new_file)

    append_write(path + '/web/static/styles/' + params.get('_nfront') + '.css')
    append_write(path + '/web/static/scripts/' + params.get('_nfront') + '.js')
コード例 #4
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_setup_mysql(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/dev/setup_mysql_dev.sql',
                               params)
    make_file(path + '/dev/setup_mysql_dev.sql', new_file)

    new_file = render_template(dirname + '/templates/dev/setup_mysql_test.sql',
                               params)
    make_file(path + '/dev/setup_mysql_test.sql', new_file)
コード例 #5
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_orm(path, dirname, params):
    """
    """
    try:
        os.makedirs(path + '/models/engine')

        new_file = render_template(dirname + '/templates/orm/__init__.py',
                                   params)
        make_file(path + "/models/__init__.py", new_file)

        new_file = render_template(dirname + '/templates/orm/base_model.py',
                                   params)
        make_file(path + "/models/base_model.py", new_file)

        new_file = render_template(dirname + '/templates/orm/file_storage.py',
                                   params)
        make_file(path + "/models/engine/file_storage.py", new_file)

        new_file = render_template(dirname + '/templates/orm/db_storage.py',
                                   params)
        make_file(path + "/models/engine/db_storage.py", new_file)

        append_write(path + "/models/engine/__init__.py")
    except OSError:
        print("Creation of the directory %s failed" % "models/ models/engine")
    else:
        print("Successfully created the directory %s" %
              "models/ models/engine")
コード例 #6
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_api(path, dirname, params):
    """
    """
    try:
        os.makedirs(path + '/api/v1/views')

        append_write(path + "/api/__init__.py")
        append_write(path + "/api/v1/__init__.py")

        new_file = render_template(dirname + '/templates/restfull/app.py',
                                   params)
        make_file(path + '/api/v1/app.py', new_file)

        new_file = render_template(dirname + '/templates/restfull/index.py',
                                   params)
        make_file(path + '/api/v1/views/index.py', new_file)

        new_file = render_template(dirname + '/templates/restfull/__init__.py',
                                   params)
        make_file(path + '/api/v1/views/__init__.py', new_file)
    except OSError:
        print("Creation of the directory %s failed" %
              "api/ api/v1 api/v1/views")
    else:
        print("Successfully created the directory %s" %
              "api/ api/v1 api/v1/views")
コード例 #7
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_launch(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/dev/launch.sh', params)
    make_file(path + '/launch.sh', new_file)
コード例 #8
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_export_fc(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/dev/export_fc_var.sh',
                               params)
    make_file(path + '/dev/export_fc_var.sh', new_file)
コード例 #9
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_model(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/orm/model.py', params)
    make_file(path + '/models/' + params.get('_nclass') + '.py', new_file)
コード例 #10
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_dbconsole(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/cli/dbconsole.sh', params)
    make_file(path + '/dbconsole.sh', new_file)
コード例 #11
0
ファイル: create.py プロジェクト: guxal/Flask-CLI
def create_export(path, dirname, params):
    """
    """
    new_file = render_template(dirname + '/templates/dev/export_enviroment.sh',
                               params)
    make_file(path + '/dev/export_enviroment.sh', new_file)