├── .github └── workflows │ ├── cleanup.yml │ ├── content_validation.yml │ └── deploy.yml ├── .gitignore ├── .helm ├── templates │ ├── 12-backend.yaml │ ├── 14-tuf-router.yaml │ ├── 20-ingress-tuf-router.yaml │ ├── 20-ingress.yaml │ ├── _helpers.tpl │ └── _rewrites.tpl ├── trdl_channels-dev.yaml └── values.yaml ├── .prettierignore ├── .werf ├── artifacts │ ├── convert │ ├── feed-group-channel-ru.xml-template │ ├── feed-group-channel.xml-template │ ├── generate_artifacts.sh │ └── get_git_history.sh ├── nginx-dev.conf ├── nginx-tuf-router.conf └── tuf-router.lua ├── DEVELOPMENT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Taskfile.yaml ├── _config.yml ├── _config_dev.yml ├── _config_en.yml ├── _config_ru.yml ├── _data ├── _common │ ├── channels_info.yml │ ├── channels_versions.json │ ├── frameworks.yml │ ├── i18n.yaml │ ├── releases.json │ └── releases_history.json ├── en │ ├── breadcrumbs.yml │ ├── common │ ├── guides │ │ ├── ask_and_star_buttons.yaml │ │ ├── breadcrumbs.yml │ │ └── links.yaml │ ├── publications.yml │ ├── sidebars │ │ └── guide.yml │ └── topnav.yml └── ru │ ├── breadcrumbs.yml │ ├── common │ ├── guides │ ├── ask_and_star_buttons.yaml │ ├── breadcrumbs.yml │ └── links.yaml │ ├── publications.yml │ ├── sidebars │ └── guide.yml │ └── topnav.yml ├── _includes ├── _common │ ├── about │ │ └── changelog.liquid │ ├── channel-menu-v2.html │ ├── channel-menu.html │ ├── footer.html │ ├── group-menu-v2.html │ ├── group-menu.html │ ├── guides-landing-tile.html │ ├── guides-landing-tiles.html │ ├── head-common.html │ ├── head.html.liquid │ ├── intro.md │ ├── nav-breadcrumbs.html │ ├── publications.html │ ├── scheme.md │ ├── sidebar.html │ ├── slack_popup.html │ ├── snippetcut_example │ ├── toc.html │ ├── topnav-documentation.html │ ├── topnav.html │ ├── version-menu.html │ └── warning.html ├── _layouts │ └── guides │ │ ├── ask_and_star_buttons.html │ │ ├── breadcrumbs.html │ │ ├── page_to_page_guide.liquid │ │ ├── sidebar.html.liquid │ │ └── sidebar_li.html.liquid ├── en │ ├── common │ ├── guides │ │ ├── 100_basic.md.liquid │ │ ├── 100_basic │ │ │ ├── 10_build.md.liquid │ │ │ ├── 10_build_description.md.liquid │ │ │ ├── 20_cluster.md.liquid │ │ │ ├── 20_cluster │ │ │ │ ├── docker_ready.md.liquid │ │ │ │ ├── frequent_issues.md.liquid │ │ │ │ ├── has_cluster.md.liquid │ │ │ │ ├── minikube_linux.md.liquid │ │ │ │ ├── minikube_macos.md.liquid │ │ │ │ ├── minikube_windows.md.liquid │ │ │ │ ├── namespace_deleted.md.liquid │ │ │ │ ├── nothing_helped.md.liquid │ │ │ │ └── system_restarted_minikube.md.liquid │ │ │ ├── 20_cluster_description.md.liquid │ │ │ ├── 30_deploy.md.liquid │ │ │ ├── 30_deploy_description.md.liquid │ │ │ ├── 35_deploy_changes.md.liquid │ │ │ ├── 35_deploy_changes_description.md.liquid │ │ │ ├── 38_kubernetes_basics.md.liquid │ │ │ ├── 38_kubernetes_basics_description.md.liquid │ │ │ ├── 40_must_haves.md.liquid │ │ │ └── 40_must_haves_description.md.liquid │ │ ├── 200_real_apps.md.liquid │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md.liquid │ │ │ ├── 010_basic_app │ │ │ │ ├── django │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── 010_basic_app_description.md.liquid │ │ │ ├── 020_logging.md.liquid │ │ │ ├── 020_logging │ │ │ │ ├── django │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── 020_logging_description.md.liquid │ │ │ ├── 030_assets.md.liquid │ │ │ ├── 030_assets │ │ │ │ ├── django │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── 030_assets_description.md.liquid │ │ │ ├── 040_db.md.liquid │ │ │ ├── 040_db │ │ │ │ ├── django │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── 040_db_description.md.liquid │ │ │ ├── 050_s3.md.liquid │ │ │ ├── 050_s3 │ │ │ │ ├── django │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── 050_s3_description.md.liquid │ │ │ ├── 080_configuration.md.liquid │ │ │ ├── 080_configuration │ │ │ │ ├── django │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ │ ├── golang │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ │ ├── java_springboot │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ │ ├── laravel │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ │ ├── nodejs │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ │ └── rails │ │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ │ └── 090_expected_result.md.liquid │ │ │ └── 080_configuration_description.md.liquid │ │ ├── 300_deployment_practices.md.liquid │ │ ├── 300_deployment_practices │ │ │ ├── 010_life_cycle.md.liquid │ │ │ ├── 020_high_availability.md.liquid │ │ │ └── 030_resource_management.md.liquid │ │ ├── 400_ci_cd_workflow.md.liquid │ │ ├── chapter_initial_prepare_cluster.md.liquid │ │ ├── chapter_initial_prepare_repo.md.liquid │ │ ├── chapter_prepare_repo_commands.md.liquid │ │ └── chapter_production_disclaimer.md.liquid │ ├── installation │ │ ├── installer_linux_macos.md │ │ ├── setup_buildah.md │ │ ├── trdl_linux.md │ │ ├── trdl_macos.md │ │ └── trdl_windows.md │ ├── layouts │ └── snippetcut_example └── ru │ ├── common │ ├── guides │ ├── 100_basic.md.liquid │ ├── 100_basic │ │ ├── 10_build.md.liquid │ │ ├── 10_build_description.md.liquid │ │ ├── 20_cluster.md.liquid │ │ ├── 20_cluster │ │ │ ├── docker_ready.md.liquid │ │ │ ├── frequent_issues.md.liquid │ │ │ ├── has_cluster.md.liquid │ │ │ ├── minikube_linux.md.liquid │ │ │ ├── minikube_macos.md.liquid │ │ │ ├── minikube_windows.md.liquid │ │ │ ├── namespace_deleted.md.liquid │ │ │ ├── nothing_helped.md.liquid │ │ │ └── system_restarted_minikube.md.liquid │ │ ├── 20_cluster_description.md.liquid │ │ ├── 30_deploy.md.liquid │ │ ├── 30_deploy_description.md.liquid │ │ ├── 35_deploy_changes.md.liquid │ │ ├── 35_deploy_changes_description.md.liquid │ │ ├── 38_kubernetes_basics.md.liquid │ │ ├── 38_kubernetes_basics_description.md.liquid │ │ ├── 40_must_haves.md.liquid │ │ └── 40_must_haves_description.md.liquid │ ├── 200_real_apps.md.liquid │ ├── 200_real_apps │ │ ├── 010_basic_app.md.liquid │ │ ├── 010_basic_app │ │ │ ├── django │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── golang │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ │ └── rails │ │ │ │ ├── 001_generate_app.md.liquid │ │ │ │ ├── 002_wirh_command.md.liquid │ │ │ │ ├── 003_notification.md.liquid │ │ │ │ ├── 005_add_ping.md.liquid │ │ │ │ ├── 010_return_pong.md.liquid │ │ │ │ ├── 015_building_image.md.liquid │ │ │ │ ├── 020_new_deployment.md.liquid │ │ │ │ └── 025_expected_result.md.liquid │ │ ├── 010_basic_app_description.md.liquid │ │ ├── 020_logging.md.liquid │ │ ├── 020_logging │ │ │ ├── django │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── golang │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ │ └── rails │ │ │ │ ├── 005_default_channel.md.liquid │ │ │ │ ├── 015_direction_logs.md.liquid │ │ │ │ ├── 017_additional_entity.md.liquid │ │ │ │ ├── 020_log_format.md.liquid │ │ │ │ ├── 025_log_parsing.md.liquid │ │ │ │ ├── 030_installing_json.md.liquid │ │ │ │ ├── 033_default_json.md.liquid │ │ │ │ ├── 035_fr_loglevel.md.liquid │ │ │ │ ├── 036_fr_def_log_var.md.liquid │ │ │ │ ├── 037_logs_via_variable.md.liquid │ │ │ │ ├── 040_filtering_logs.md.liquid │ │ │ │ ├── 045_expected_result.md.liquid │ │ │ │ ├── 050_checking_logs.md.liquid │ │ │ │ └── 055_second_expected_result.md.liquid │ │ ├── 020_logging_description.md.liquid │ │ ├── 030_assets.md.liquid │ │ ├── 030_assets │ │ │ ├── django │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── golang │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ │ └── rails │ │ │ │ ├── 001_js_css_builder.md.liquid │ │ │ │ ├── 003_image_page.md.liquid │ │ │ │ ├── 005_distribution_static_files.md.liquid │ │ │ │ ├── 010_build_and_deployment.md.liquid │ │ │ │ ├── 015_expected_result.md.liquid │ │ │ │ ├── 020_image_first.md.liquid │ │ │ │ ├── 025_image_second.md.liquid │ │ │ │ └── 030_framework_scaling.md.liquid │ │ ├── 030_assets_description.md.liquid │ │ ├── 040_db.md.liquid │ │ ├── 040_db │ │ │ ├── django │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── golang │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ │ └── rails │ │ │ │ ├── 001_preparing_stateful_app.md.liquid │ │ │ │ ├── 005_major_changes.md.liquid │ │ │ │ ├── 007_new_endpoints.md.liquid │ │ │ │ ├── 010_new_controllers.md.liquid │ │ │ │ ├── 013_list_of_routes.md.liquid │ │ │ │ ├── 015_two_simple_migrations.md.liquid │ │ │ │ ├── 017_stateful_set.md.liquid │ │ │ │ ├── 020_setup_db_work.md.liquid │ │ │ │ ├── 023_about_method.md.liquid │ │ │ │ ├── 024_about_method_2.md.liquid │ │ │ │ ├── 025_migration_job.md.liquid │ │ │ │ ├── 026_mysql_test_spoiler.md.liquid │ │ │ │ ├── 027_init_container.md.liquid │ │ │ │ ├── 030_expected_result.md.liquid │ │ │ │ ├── 033_database_request.md.liquid │ │ │ │ └── 035_expected_result_db.md.liquid │ │ ├── 040_db_description.md.liquid │ │ ├── 050_s3.md.liquid │ │ ├── 050_s3 │ │ │ ├── django │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── golang │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ │ └── rails │ │ │ │ ├── 001_preparing.md.liquid │ │ │ │ ├── 005_add_model.md.liquid │ │ │ │ ├── 010_add_new_controllerl.md.liquid │ │ │ │ ├── 015_add_new_routes.md.liquid │ │ │ │ ├── 020_new_migrations.md.liquid │ │ │ │ ├── 025_stateful_minio.md.liquid │ │ │ │ ├── 030_job_minio.md.liquid │ │ │ │ ├── 035_minio_configuration.md.liquid │ │ │ │ ├── 040_minio_activation.md.liquid │ │ │ │ └── 045_expected_result.md.liquid │ │ ├── 050_s3_description.md.liquid │ │ ├── 080_configuration.md.liquid │ │ ├── 080_configuration │ │ │ ├── django │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ ├── framework_id │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ ├── golang │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ ├── java_springboot │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ ├── laravel │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ ├── nodejs │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ │ └── rails │ │ │ │ ├── 001_nginx_config.md.liquid │ │ │ │ ├── 005_nginx_config_map.md.liquid │ │ │ │ ├── 010_config_map_deployment.md.liquid │ │ │ │ ├── 015_new_dockerfile.md.liquid │ │ │ │ ├── 020_annotation_hashsum.md.liquid │ │ │ │ ├── 025_values_yaml.md.liquid │ │ │ │ ├── 030_values_yaml_using.md.liquid │ │ │ │ ├── 035_values_yaml_env.md.liquid │ │ │ │ ├── 040_configmap_envs.md.liquid │ │ │ │ ├── 045_configmap_deployment.md.liquid │ │ │ │ ├── 050_annotation_hashsum.md.liquid │ │ │ │ ├── 055_loginpas_storage.md.liquid │ │ │ │ ├── 060_secret_values.md.liquid │ │ │ │ ├── 065_expected_result.md.liquid │ │ │ │ ├── 070_secret_resource.md.liquid │ │ │ │ ├── 075_secret_mounting.md.liquid │ │ │ │ ├── 080_repo_link.md.liquid │ │ │ │ ├── 085_configs_including.md.liquid │ │ │ │ └── 090_expected_result.md.liquid │ │ └── 080_configuration_description.md.liquid │ ├── 300_deployment_practices.md.liquid │ ├── 300_deployment_practices │ │ ├── 010_life_cycle.md.liquid │ │ ├── 020_high_availability.md.liquid │ │ └── 030_resource_management.md.liquid │ ├── 400_ci_cd_workflow.md.liquid │ ├── chapter_initial_prepare_cluster.md.liquid │ ├── chapter_initial_prepare_repo.md.liquid │ ├── chapter_prepare_repo_commands.md.liquid │ └── chapter_production_disclaimer.md.liquid │ ├── installation │ ├── installer_linux_macos.md │ ├── installer_windows.md │ ├── setup_buildah.md │ ├── trdl_linux.md │ ├── trdl_macos.md │ └── trdl_windows.md │ ├── layouts │ └── snippetcut_example ├── _layouts ├── default-guides.html ├── default.html ├── guides-development.html ├── guides-landing.html ├── guides-page-base.html ├── guides-page.html ├── guides-wip.html ├── none.html ├── page-nosidebar.html ├── page.html ├── plain.html ├── sidebar-nosidebar.html └── sidebar.html ├── _pages └── guides │ └── framework_id │ ├── 100_basic.md │ ├── 100_basic │ ├── 10_build.md │ ├── 20_cluster.md │ ├── 30_deploy.md │ ├── 35_deploy_changes.md │ ├── 38_kubernetes_basics.md │ └── 40_must_haves.md │ ├── 200_real_apps.md │ ├── 200_real_apps │ ├── 010_basic_app.md │ ├── 020_logging.md │ ├── 030_assets.md │ ├── 040_db.md │ ├── 050_s3.md │ └── 080_configuration.md │ ├── 300_deployment_practices.md │ └── 300_deployment_practices │ ├── 010_life_cycle.md │ ├── 020_high_availability.md │ └── 030_resource_management.md ├── _plugins ├── custom_filters.rb ├── filesused.rb ├── offtopic.rb ├── plugin_utils.rb ├── raise_error.rb ├── snippetcut.rb ├── tree_file_viewer.rb └── variables.rb ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── apple-touch-icon.png ├── assets ├── css │ ├── asciinema-player.css │ ├── bootstrap.min.css │ ├── changelog.css │ ├── configuration-table.css │ ├── configurator.css │ ├── customstyles-guides.scss │ ├── docs-guides.scss │ ├── docs.css │ ├── featherlight.min.css │ ├── font-awesome.min.css │ ├── guides.css │ ├── header.css │ ├── index.css │ ├── installation.css │ ├── introduction.css │ ├── landing.scss │ ├── normalize.css │ ├── overview.css │ ├── printstyles.css │ ├── publications.css │ ├── release-channels.css │ ├── releases.css │ ├── submenu.css │ ├── syntax.css │ └── tab.css ├── demo │ ├── build.cast │ ├── cleanup.cast │ ├── deploy.cast │ ├── distribute.cast │ ├── failed_deploy.cast │ ├── failed_deploy_output.html │ ├── failed_deploy_output_explanations-1.png │ ├── failed_deploy_output_explanations-2.png │ ├── failed_deploy_with_helm.cast │ ├── failed_deploy_with_werf.cast │ ├── successful_deploy.cast │ ├── successful_deploy_output.html │ ├── successful_deploy_output_explanations.png │ ├── successful_deploy_with_helm.cast │ ├── successful_deploy_with_werf.cast │ └── test.cast ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── 404.png │ ├── arrow-guides-tiles.svg │ ├── arrow-guides.svg │ ├── arrow.svg │ ├── backgrounds │ │ ├── community.svg │ │ ├── feature_special.svg │ │ ├── feature_special2.svg │ │ ├── features.svg │ │ ├── guides_banner.svg │ │ ├── intro-banner-left.svg │ │ ├── intro-banner-right.svg │ │ ├── intro-banner.svg │ │ ├── intro.svg │ │ ├── presentation.svg │ │ ├── stats.svg │ │ ├── welcome.svg │ │ └── welcome_right.svg │ ├── cncf-logo-small.svg │ ├── cncf-logo.svg │ ├── company_logo.png │ ├── company_logo_big.png │ ├── crane.svg │ ├── file-icon.svg │ ├── flant-logo-en.svg │ ├── flant-logo.svg │ ├── folder-icon.svg │ ├── guides │ │ ├── common │ │ │ ├── 020-basic-process-overview.png │ │ │ ├── 020-edit-pipeline.png │ │ │ ├── 020-gitlab-cleanup.png │ │ │ ├── 020-gitlab-mr-details.png │ │ │ ├── 020-gitlab-pipeline.png │ │ │ ├── 020-pipelines-list.png │ │ │ ├── 020-werf-secret-key-in-gitlab.png │ │ │ ├── 030-scheme.png │ │ │ ├── 100_30_app_in_browser.png │ │ │ ├── 100_50_werf_secret_key_in_gitlab.png │ │ │ ├── 200_20_debug_http.png │ │ │ ├── 200_20_debug_http.puml │ │ │ ├── 200_30_assets_onedocker.png │ │ │ ├── 200_30_assets_twodockers.png │ │ │ ├── 200_30_assets_twodockers.puml │ │ │ ├── 400_50_ci-cd-flow.svg │ │ │ ├── navigation.png │ │ │ └── navigation.svg │ │ ├── django.png │ │ ├── django │ │ │ ├── 030_assets_resources.png │ │ │ ├── 030_assets_success.png │ │ │ └── 100_10_app_in_browser.png │ │ ├── gitlab.png │ │ ├── go.svg │ │ ├── golang │ │ │ ├── 030_assets_resources.png │ │ │ ├── 030_assets_success.png │ │ │ └── 100_10_app_in_browser.png │ │ ├── java_springboot │ │ │ ├── 030_assets_resources.png │ │ │ └── 030_assets_success.png │ │ ├── laravel.svg │ │ ├── laravel │ │ │ ├── 030_assets_resources.png │ │ │ └── 030_assets_success.png │ │ ├── nodejs.png │ │ ├── nodejs │ │ │ ├── 030_assets_resources.png │ │ │ ├── 030_assets_success.png │ │ │ ├── 100_10_app_in_browser.png │ │ │ ├── 200_30_assets_deploy_1.png │ │ │ ├── 200_30_assets_deploy_1.puml │ │ │ ├── 200_30_assets_deploy_2.png │ │ │ └── 200_30_assets_deploy_2.puml │ │ ├── rails.svg │ │ ├── rails │ │ │ ├── 030_assets_resources.png │ │ │ ├── 030_assets_success.png │ │ │ └── assets.jpg │ │ ├── springboot.png │ │ └── springboot │ │ │ ├── 100_10_app_in_browser.png │ │ │ ├── 200_30_assets_deploy_1.png │ │ │ ├── 200_30_assets_deploy_1.puml │ │ │ ├── 200_30_assets_deploy_2.png │ │ │ └── 200_30_assets_deploy_2.puml │ ├── icons │ │ ├── bluesky.svg │ │ ├── box-icon.svg │ │ ├── bullet.svg │ │ ├── certificate.svg │ │ ├── check.svg │ │ ├── discourse.svg │ │ ├── discussions.svg │ │ ├── dropdown.svg │ │ ├── external.svg │ │ ├── feature-ansible.svg │ │ ├── feature-config.svg │ │ ├── feature-debug.svg │ │ ├── feature-deploy.svg │ │ ├── feature-easy.svg │ │ ├── feature-fast.svg │ │ ├── feature-helm.svg │ │ ├── feature-kubernetes.svg │ │ ├── feature-lifecycle.svg │ │ ├── feature-size.svg │ │ ├── feature-usage.svg │ │ ├── finger.svg │ │ ├── gear.svg │ │ ├── github-icon-white.svg │ │ ├── github.svg │ │ ├── heart.png │ │ ├── heart.svg │ │ ├── maintanance-mini.svg │ │ ├── puzzles.svg │ │ ├── question_mark.svg │ │ ├── rss.svg │ │ ├── search.svg │ │ ├── slack.svg │ │ ├── star.svg │ │ ├── telegram.svg │ │ ├── triangel.svg │ │ └── weightlifter-icon.svg │ ├── illustrations │ │ ├── community.svg │ │ ├── community2.svg │ │ ├── documentation.svg │ │ ├── goals.svg │ │ ├── publications-1.svg │ │ ├── publications-2.svg │ │ ├── stats.svg │ │ └── test-pic.jpg │ ├── in_development.png │ ├── installation │ │ ├── arrow-beta.svg │ │ ├── arrow-ea.svg │ │ ├── arrow-rocksolid.svg │ │ ├── arrow-stable.svg │ │ ├── arrow-tip.svg │ │ └── bg-versions.svg │ ├── intro.svg │ ├── introduction.svg │ ├── introduction │ │ ├── nav.svg │ │ ├── s-1.svg │ │ ├── s-10.svg │ │ ├── s-11.svg │ │ ├── s-12.svg │ │ ├── s-13.svg │ │ ├── s-14.svg │ │ ├── s-2.svg │ │ ├── s-3.svg │ │ ├── s-4.svg │ │ ├── s-5.svg │ │ ├── s-6.svg │ │ ├── s-7.svg │ │ ├── s-8.svg │ │ └── s-9.svg │ ├── landing │ │ ├── building-utility-scheme.svg │ │ ├── captain_intro.png │ │ ├── captain_plan.png │ │ ├── django.png │ │ ├── django.svg │ │ ├── gitlab.png │ │ ├── go.svg │ │ ├── golang.svg │ │ ├── java_springboot.svg │ │ ├── laravel.svg │ │ ├── nodejs.png │ │ ├── nodejs.svg │ │ ├── parrot.png │ │ ├── parrot2.png │ │ ├── parrot3.png │ │ ├── parrot4.png │ │ ├── rails.svg │ │ └── springboot.png │ ├── plantuml_cache │ │ ├── 0baa75218cfa9606c6ba5c528a3d99fe72aec175.svg │ │ ├── 29131ee973c35b59c3c1cc09888f3394da843464.svg │ │ ├── a2d410554743697753ff6111a267ccde8eedd307.svg │ │ ├── b490353d604e5690d00e348381e97df2d1493352.svg │ │ ├── c44346240a7aed58ad1687dd8fb137521f1da73b.svg │ │ └── c4b3d2977233548d8f0b9c6b0a1bd00e31bc91ea.svg │ ├── publications │ │ ├── en_010920.png │ │ ├── en_020620.png │ │ ├── en_030425.png │ │ ├── en_030921.png │ │ ├── en_040221.png │ │ ├── en_041019.png │ │ ├── en_041225.png │ │ ├── en_050423.png │ │ ├── en_050522.jpeg │ │ ├── en_050624.png │ │ ├── en_051020.png │ │ ├── en_060520.png │ │ ├── en_061123.png │ │ ├── en_070223.png │ │ ├── en_080422.png │ │ ├── en_090223.png │ │ ├── en_090919.png │ │ ├── en_110723.jpeg │ │ ├── en_130723.jpg │ │ ├── en_140120.png │ │ ├── en_141221.png │ │ ├── en_150623.png │ │ ├── en_160524.png │ │ ├── en_161020.jpg │ │ ├── en_170420.png │ │ ├── en_170523.png │ │ ├── en_190519.jpg │ │ ├── en_200622.png │ │ ├── en_210220.png │ │ ├── en_210422.jpeg │ │ ├── en_210922.png │ │ ├── en_211020.png │ │ ├── en_220223.png │ │ ├── en_230125.png │ │ ├── en_230524.jpg │ │ ├── en_230819.png │ │ ├── en_240120.png │ │ ├── en_240724.png │ │ ├── en_250724.jpg │ │ ├── en_250825.png │ │ ├── en_251019.png │ │ ├── en_260821.png │ │ ├── en_261119.png │ │ ├── en_270320.png │ │ ├── en_290921.png │ │ ├── en_301024.jpg │ │ ├── en_311019.png │ │ ├── ru_010722.png │ │ ├── ru_020620.png │ │ ├── ru_020721.png │ │ ├── ru_020922.png │ │ ├── ru_030418.jpg │ │ ├── ru_030420.png │ │ ├── ru_030425.png │ │ ├── ru_030823.png │ │ ├── ru_031122.png │ │ ├── ru_031123.png │ │ ├── ru_060617.jpg │ │ ├── ru_061020.png │ │ ├── ru_070222.png │ │ ├── ru_070223.png │ │ ├── ru_070518.gif │ │ ├── ru_071019.png │ │ ├── ru_071117.jpg │ │ ├── ru_090821.png │ │ ├── ru_091120.png │ │ ├── ru_100625.png │ │ ├── ru_120923.png │ │ ├── ru_121023.png │ │ ├── ru_130723.jpg │ │ ├── ru_140120.png │ │ ├── ru_140122.png │ │ ├── ru_140218.jpg │ │ ├── ru_140624.png │ │ ├── ru_141221.png │ │ ├── ru_150523.png │ │ ├── ru_160120.png │ │ ├── ru_160420.png │ │ ├── ru_160524.png │ │ ├── ru_171219.png │ │ ├── ru_180522.png │ │ ├── ru_181220.png │ │ ├── ru_190717.jpg │ │ ├── ru_191124.png │ │ ├── ru_200622.png │ │ ├── ru_201222.png │ │ ├── ru_210325.png │ │ ├── ru_210525.png │ │ ├── ru_210819.png │ │ ├── ru_211119.png │ │ ├── ru_211124.png │ │ ├── ru_220224.png │ │ ├── ru_221221.png │ │ ├── ru_230318.jpg │ │ ├── ru_230622.png │ │ ├── ru_230817.jpg │ │ ├── ru_240119.jpg │ │ ├── ru_240320.png │ │ ├── ru_240919.png │ │ ├── ru_241221.png │ │ ├── ru_261124.png │ │ ├── ru_271217.jpg │ │ ├── ru_280217.jpg │ │ ├── ru_280317.jpg │ │ ├── ru_280324.png │ │ ├── ru_290421.png │ │ ├── ru_290722.png │ │ ├── ru_290817.jpg │ │ ├── ru_291020.png │ │ ├── ru_300518.jpg │ │ ├── ru_300819.png │ │ ├── ru_311222.jpeg │ │ └── ru_460351.jpg │ ├── share.png │ ├── telegram.svg │ ├── werf-logo.svg │ ├── werf-schema.png │ ├── werf-schema.svg │ ├── werf-schema_ru.svg │ └── werf-time.svg └── js │ ├── asciinema-player.min.js │ ├── channels.js │ ├── clipboard.min.js │ ├── configurator │ ├── options.js │ └── tabs.js │ ├── customscripts-guides.js │ ├── customscripts.js │ ├── details.js │ ├── environment.js │ ├── featherlight.min.js │ ├── installation.js │ ├── introduction.js │ ├── jekyll-search.js │ ├── jquery-3.1.0.min.js │ ├── jquery.ba-throttle-debounce.min.js │ ├── jquery.localScroll.min.js │ ├── jquery.navgoco.min.js │ ├── jquery.scrollTo.min.js │ ├── jquery.shuffle.min.js │ ├── landing.js │ ├── masonry.pkgd.min.js │ ├── popup.js │ ├── tab.js │ ├── tippy.js │ └── toc.js ├── backend ├── README.md ├── common.go ├── go.mod ├── go.sum ├── handlers.go ├── httpLog.go ├── main.go └── main_test.go ├── bin └── configurator │ ├── config.go │ ├── config.yml │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── static │ ├── _data │ │ └── _common │ │ │ └── configurator.yaml │ └── _includes │ │ ├── _common │ │ └── configurator │ │ │ └── codesandbox.html │ │ ├── en │ │ └── configurator │ │ │ ├── partials │ │ │ ├── ci │ │ │ │ ├── argocd_host_main_section.md.liquid │ │ │ │ ├── argocd_host_project_section.md.liquid │ │ │ │ ├── buildah_install.md.liquid │ │ │ │ ├── buildah_ubuntu.md.liquid │ │ │ │ ├── configuring_the_container_registry.md.liquid │ │ │ │ ├── cross_platform_note.md.liquid │ │ │ │ ├── file_viewer_local_example.md.liquid │ │ │ │ ├── gitlab_docker_main_section.md.liquid │ │ │ │ ├── gitlab_host_main_section.md.liquid │ │ │ │ ├── gitlab_kubernetes_main_section.md.liquid │ │ │ │ └── gitlab_project_main_section.md.liquid │ │ │ └── dev │ │ │ │ ├── buildah_install.md.liquid │ │ │ │ ├── cross_build.md.liquid │ │ │ │ ├── install_main_block.md.liquid │ │ │ │ ├── run_main_block.md.liquid │ │ │ │ └── windows_prepare.md.liquid │ │ │ └── tab │ │ │ ├── ci │ │ │ ├── argocd-with-gitlab-ci-cd │ │ │ │ └── simple │ │ │ │ │ ├── docker-runner │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ ├── host-runner │ │ │ │ │ └── linux │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── docker │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ ├── github-actions │ │ │ │ └── simple │ │ │ │ │ ├── docker-runner │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ ├── host-runner │ │ │ │ │ └── linux │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── docker │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ ├── gitlab-ci-cd │ │ │ │ ├── best-practice │ │ │ │ │ └── with-per-repo-ci-cd │ │ │ │ │ │ ├── application │ │ │ │ │ │ ├── docker-runner │ │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ │ └── buildah │ │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ ├── host-runner │ │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ │ │ └── docker │ │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ └── buildah │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── monorepo │ │ │ │ │ │ ├── docker-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ └── buildah │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ ├── host-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ │ └── docker │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ └── simple │ │ │ │ │ ├── docker-runner │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ ├── host-runner │ │ │ │ │ └── linux │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── docker │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ └── other-ci-cd-system │ │ │ │ └── simple │ │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── docker │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ │ └── dev │ │ │ ├── linux │ │ │ ├── buildah │ │ │ │ ├── install.md.liquid │ │ │ │ └── run.md.liquid │ │ │ └── docker │ │ │ │ ├── install.md.liquid │ │ │ │ └── run.md.liquid │ │ │ ├── macos │ │ │ ├── buildah │ │ │ │ ├── install.md.liquid │ │ │ │ └── run.md.liquid │ │ │ └── docker │ │ │ │ ├── install.md.liquid │ │ │ │ └── run.md.liquid │ │ │ └── windows │ │ │ ├── buildah │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ │ └── docker │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ └── ru │ │ └── configurator │ │ ├── partials │ │ ├── ci │ │ │ ├── argocd_host_project_section.md.liquid │ │ │ ├── buildah_install.md.liquid │ │ │ ├── buildah_ubuntu.md.liquid │ │ │ ├── configuring_the_container_registry.md.liquid │ │ │ ├── cross_platform_note.md.liquid │ │ │ ├── file_viewer_local_example.md.liquid │ │ │ ├── gitlab_docker_main_section.md.liquid │ │ │ ├── gitlab_host_main_section.md.liquid │ │ │ ├── gitlab_kubernetes_main_section.md.liquid │ │ │ └── gitlab_project_main_section.md.liquid │ │ └── dev │ │ │ ├── buildah_install.md.liquid │ │ │ ├── cross_build.md.liquid │ │ │ ├── install_main_block.md.liquid │ │ │ ├── run_main_block.md.liquid │ │ │ └── windows_prepare.md.liquid │ │ └── tab │ │ ├── ci │ │ ├── argocd-with-gitlab-ci-cd │ │ │ └── simple │ │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── docker │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ ├── github-actions │ │ │ └── simple │ │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── docker │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ ├── gitlab-ci-cd │ │ │ ├── best-practice │ │ │ │ └── with-per-repo-ci-cd │ │ │ │ │ ├── application │ │ │ │ │ ├── docker-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ └── buildah │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ ├── host-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ │ └── docker │ │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── monorepo │ │ │ │ │ ├── docker-runner │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ ├── host-runner │ │ │ │ │ └── linux │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ │ └── docker │ │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── kubernetes-runner │ │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ └── simple │ │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ │ └── docker │ │ │ │ │ ├── infra.md.liquid │ │ │ │ │ └── project.md.liquid │ │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ └── other-ci-cd-system │ │ │ └── simple │ │ │ ├── docker-runner │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ │ ├── host-runner │ │ │ └── linux │ │ │ │ ├── buildah │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ │ │ └── docker │ │ │ │ ├── infra.md.liquid │ │ │ │ └── project.md.liquid │ │ │ └── kubernetes-runner │ │ │ └── linux │ │ │ └── buildah │ │ │ ├── infra.md.liquid │ │ │ └── project.md.liquid │ │ └── dev │ │ ├── linux │ │ ├── buildah │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ └── docker │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ ├── macos │ │ ├── buildah │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ └── docker │ │ │ ├── install.md.liquid │ │ │ └── run.md.liquid │ │ └── windows │ │ ├── buildah │ │ ├── install.md.liquid │ │ └── run.md.liquid │ │ └── docker │ │ ├── install.md.liquid │ │ └── run.md.liquid │ ├── templates │ ├── includes │ │ └── tabs-for-pages.html │ └── pages │ │ ├── configurator.html │ │ ├── page.html │ │ └── tabs.html │ └── util.go ├── browserconfig.xml ├── docker-compose.yml ├── examples ├── basic │ ├── 000_app │ │ └── start.sh │ ├── 001_build │ │ ├── Dockerfile │ │ ├── start.sh │ │ └── werf.yaml │ ├── 002_deploy │ │ ├── .dockerignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── start.sh │ │ └── werf.yaml │ ├── 003_scale │ │ ├── .dockerignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── start.sh │ │ └── werf.yaml │ ├── 004_modify_app │ │ ├── .dockerignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── start.sh │ │ └── werf.yaml │ └── 005_kubernetes_basics │ │ ├── .dockerignore │ │ ├── .helm │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── start.sh │ │ └── werf.yaml ├── configurator │ ├── ci-cd │ │ ├── best-practice │ │ │ ├── with-common-ci-cd │ │ │ │ └── .gitkeep │ │ │ └── with-per-repo-ci-cd │ │ │ │ └── gitlab-ci-cd │ │ │ │ ├── app-repo │ │ │ │ ├── docker-runner │ │ │ │ │ └── linux │ │ │ │ │ │ └── buildah │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ │ ├── .helm │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ │ └── performance │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ ├── requirements.lock │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── main.sh │ │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ │ └── werf.yaml │ │ │ │ ├── host-runner │ │ │ │ │ └── linux │ │ │ │ │ │ ├── buildah │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ │ ├── .helm │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ │ │ └── performance │ │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ │ ├── requirements.lock │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── main.sh │ │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ │ └── werf.yaml │ │ │ │ │ │ └── docker │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ │ ├── .helm │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ │ └── performance │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ ├── requirements.lock │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ │ └── values.yaml │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── main.sh │ │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ │ └── werf.yaml │ │ │ │ └── kubernetes-runner │ │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ └── performance │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ ├── requirements.lock │ │ │ │ │ ├── templates │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ ├── src │ │ │ │ │ └── main.sh │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ └── werf.yaml │ │ │ │ └── monorepo │ │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ ├── performance │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ingress-main.yaml │ │ │ │ │ ├── requirements.lock │ │ │ │ │ ├── templates │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ ├── src │ │ │ │ │ ├── app1 │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ └── main.sh │ │ │ │ │ └── app2 │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ └── main.sh │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ └── werf.yaml │ │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── charts │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ │ ├── performance │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── ingress-main.yaml │ │ │ │ │ │ ├── requirements.lock │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ ├── src │ │ │ │ │ │ ├── app1 │ │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ │ └── main.sh │ │ │ │ │ │ └── app2 │ │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ │ └── main.sh │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ └── werf.yaml │ │ │ │ │ └── docker │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ ├── charts │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ │ ├── database │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ │ ├── performance │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ingress-main.yaml │ │ │ │ │ ├── requirements.lock │ │ │ │ │ ├── templates │ │ │ │ │ │ └── NOTES.txt │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── sources.Dockerfile │ │ │ │ │ ├── src │ │ │ │ │ ├── app1 │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ └── main.sh │ │ │ │ │ └── app2 │ │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ │ └── main.sh │ │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ │ └── werf.yaml │ │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── .gitignore │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ ├── .helm │ │ │ │ ├── Chart.yaml │ │ │ │ ├── charts │ │ │ │ │ ├── app │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── deployment-app.yaml │ │ │ │ │ │ │ ├── ingress-app.yaml │ │ │ │ │ │ │ ├── job-app-init-db.yaml │ │ │ │ │ │ │ ├── job-app-migrate-db.yaml │ │ │ │ │ │ │ └── service-app.yaml │ │ │ │ │ ├── database │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── statefulset-db.yaml │ │ │ │ │ ├── e2e-long │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── job-e2e-long.yaml │ │ │ │ │ ├── e2e-short │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── job-e2e-short.yaml │ │ │ │ │ ├── performance │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── job-performance.yaml │ │ │ │ │ └── shared │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── ingress-main.yaml │ │ │ │ ├── requirements.lock │ │ │ │ ├── templates │ │ │ │ │ └── NOTES.txt │ │ │ │ └── values.yaml │ │ │ │ ├── Taskfile.yaml │ │ │ │ ├── sources.Dockerfile │ │ │ │ ├── src │ │ │ │ ├── app1 │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ └── main.sh │ │ │ │ └── app2 │ │ │ │ │ ├── Taskfile.yaml │ │ │ │ │ ├── app.Dockerfile │ │ │ │ │ └── main.sh │ │ │ │ ├── werf-giterminism.yaml │ │ │ │ └── werf.yaml │ │ └── simple │ │ │ ├── argocd-with-gitlab-ci-cd │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── package-lock.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ │ │ └── docker │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ ├── .helm │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ │ └── werf.yaml │ │ │ ├── github-actions │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── cleanup.yml │ │ │ │ │ │ └── prod.yml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── .github │ │ │ │ │ │ └── workflows │ │ │ │ │ │ │ ├── cleanup.yml │ │ │ │ │ │ │ └── prod.yml │ │ │ │ │ ├── .helm │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── package-lock.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ │ │ └── docker │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── cleanup.yml │ │ │ │ │ │ └── prod.yml │ │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── cleanup.yml │ │ │ │ │ └── prod.yml │ │ │ │ ├── .helm │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ │ └── werf.yaml │ │ │ ├── gitlab-ci-cd │ │ │ ├── docker-runner │ │ │ │ └── linux │ │ │ │ │ └── buildah │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ ├── host-runner │ │ │ │ └── linux │ │ │ │ │ ├── buildah │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── package-lock.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ │ │ └── docker │ │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ │ └── werf.yaml │ │ │ └── kubernetes-runner │ │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── .gitlab-ci.yml │ │ │ │ ├── .helm │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ │ └── werf.yaml │ │ │ └── other │ │ │ ├── docker-runner │ │ │ └── linux │ │ │ │ └── buildah │ │ │ │ ├── .helm │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ │ ├── pseudo-ci-cd-config.yaml │ │ │ │ └── werf.yaml │ │ │ ├── host-runner │ │ │ └── linux │ │ │ │ ├── buildah │ │ │ │ ├── .helm │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── server.js │ │ │ │ ├── pseudo-ci-cd-config.yaml │ │ │ │ └── werf.yaml │ │ │ │ └── docker │ │ │ │ ├── .helm │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ └── service.yaml │ │ │ │ ├── app │ │ │ │ ├── Dockerfile │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ │ ├── pseudo-ci-cd-config.yaml │ │ │ │ └── werf.yaml │ │ │ └── kubernetes-runner │ │ │ └── linux │ │ │ └── buildah │ │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ ├── app │ │ │ ├── Dockerfile │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── server.js │ │ │ ├── pseudo-ci-cd-config.yaml │ │ │ └── werf.yaml │ └── local-dev │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── backend │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── job-db-create.yaml │ │ │ │ │ ├── job-db-migrate.yaml │ │ │ │ │ └── service.yaml │ │ │ └── frontend │ │ │ │ ├── Chart.yaml │ │ │ │ └── templates │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ ├── requirements.lock │ │ ├── secret-values.yaml │ │ └── values.yaml │ │ ├── .sequelizerc │ │ ├── app.js │ │ ├── backend.Dockerfile │ │ ├── bin │ │ └── www │ │ ├── config │ │ └── database.json │ │ ├── db │ │ ├── migrations │ │ │ └── 20211101064002-create-talker.js │ │ └── models │ │ │ ├── index.js │ │ │ └── talker.js │ │ ├── frontend.Dockerfile │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── routes │ │ ├── ping.js │ │ └── talkers.js │ │ └── werf.yaml ├── django │ ├── 010_basic_app │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ └── ping │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ └── werf.yaml │ ├── 020_logging │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── manage.py │ │ │ ├── ping │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ └── uwsgi.ini │ │ └── werf.yaml │ ├── 030_assets │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── image │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── templates │ │ │ │ │ └── image.html │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── ping │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ └── js │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ └── uwsgi.ini │ │ └── werf.yaml │ ├── 040_db │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ └── service.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── image │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── templates │ │ │ │ │ └── image.html │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── ping │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ └── js │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ ├── talkers │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── views.py │ │ │ └── uwsgi.ini │ │ └── werf.yaml │ ├── 050_s3 │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── app │ │ │ │ ├── __init__.py │ │ │ │ ├── asgi.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ │ ├── image │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── templates │ │ │ │ │ └── image.html │ │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── ping │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ └── js │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── minio.py │ │ │ │ ├── models.py │ │ │ │ └── views.py │ │ │ ├── talkers │ │ │ │ ├── __init__.py │ │ │ │ ├── apps.py │ │ │ │ ├── migrations │ │ │ │ │ ├── 0001_initial.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── views.py │ │ │ └── uwsgi.ini │ │ └── werf.yaml │ └── 080_configuration │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ ├── secret-values.yaml │ │ ├── templates │ │ │ ├── configmap-app-envs.yaml │ │ │ ├── configmap-db-envs.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ ├── secret-app-envs.yaml │ │ │ ├── secret-db-envs.yaml │ │ │ ├── secret-minio-envs.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ │ └── values.yaml │ │ ├── .werf_secret_key │ │ ├── Dockerfile │ │ ├── app │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ ├── image │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── templates │ │ │ │ └── image.html │ │ │ └── views.py │ │ ├── manage.py │ │ ├── ping │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ └── views.py │ │ ├── static │ │ │ ├── css │ │ │ │ ├── image.css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ └── js │ │ │ │ ├── image.js │ │ │ │ └── index.js │ │ ├── storage │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── forms.py │ │ │ ├── migrations │ │ │ │ └── __init__.py │ │ │ ├── minio.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── talkers │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── views.py │ │ └── uwsgi.ini │ │ └── werf.yaml ├── golang │ ├── 010_basic_app │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── cmd │ │ │ └── main.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ └── app │ │ │ │ └── app.go │ │ └── werf.yaml │ ├── 020_logging │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── Dockerfile │ │ ├── cmd │ │ │ └── main.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── app │ │ │ │ └── app.go │ │ │ └── common │ │ │ │ └── json_logger_filter.go │ │ └── werf.yaml │ ├── 030_assets │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── cmd │ │ │ └── main.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── app │ │ │ │ └── app.go │ │ │ ├── common │ │ │ │ └── json_logger_filter.go │ │ │ └── controllers │ │ │ │ └── image_controller.go │ │ ├── static │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── javascripts │ │ │ │ └── image.js │ │ │ └── stylesheets │ │ │ │ └── site.css │ │ ├── templates │ │ │ ├── image.html │ │ │ └── index.html │ │ └── werf.yaml │ ├── 040_db │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ └── service.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── cmd │ │ │ └── main.go │ │ ├── db │ │ │ └── migrations │ │ │ │ ├── 000001_create_talkers_table.down.sql │ │ │ │ └── 000001_create_talkers_table.up.sql │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── app │ │ │ │ └── app.go │ │ │ ├── common │ │ │ │ └── json_logger_filter.go │ │ │ ├── controllers │ │ │ │ ├── db_controllers.go │ │ │ │ └── image_controller.go │ │ │ └── services │ │ │ │ └── db_service.go │ │ ├── static │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── javascripts │ │ │ │ └── image.js │ │ │ └── stylesheets │ │ │ │ └── site.css │ │ ├── templates │ │ │ ├── image.html │ │ │ └── index.html │ │ └── werf.yaml │ ├── 050_s3 │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ ├── job-setup-minio.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── cmd │ │ │ └── main.go │ │ ├── db │ │ │ └── migrations │ │ │ │ ├── 000001_create_talkers_table.down.sql │ │ │ │ └── 000001_create_talkers_table.up.sql │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── app │ │ │ │ └── app.go │ │ │ ├── common │ │ │ │ └── json_logger_filter.go │ │ │ ├── controllers │ │ │ │ ├── db_controllers.go │ │ │ │ ├── image_controller.go │ │ │ │ └── minio_controllers.go │ │ │ └── services │ │ │ │ ├── db_service.go │ │ │ │ └── minio_service.go │ │ ├── static │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── javascripts │ │ │ │ └── image.js │ │ │ └── stylesheets │ │ │ │ └── site.css │ │ ├── templates │ │ │ ├── image.html │ │ │ └── index.html │ │ └── werf.yaml │ └── 080_configuration │ │ ├── .gitignore │ │ ├── .helm │ │ ├── secret-values.yaml │ │ ├── templates │ │ │ ├── configmap-app-envs.yaml │ │ │ ├── configmap-db-envs.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ ├── job-setup-minio.yaml │ │ │ ├── secret-app-envs.yaml │ │ │ ├── secret-db-envs.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ │ └── values.yaml │ │ ├── .werf_secret_key │ │ ├── Dockerfile │ │ ├── cmd │ │ └── main.go │ │ ├── db │ │ └── migrations │ │ │ ├── 000001_create_talkers_table.down.sql │ │ │ └── 000001_create_talkers_table.up.sql │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ ├── app │ │ │ └── app.go │ │ ├── common │ │ │ └── json_logger_filter.go │ │ ├── controllers │ │ │ ├── db_controllers.go │ │ │ ├── image_controller.go │ │ │ └── minio_controllers.go │ │ └── services │ │ │ ├── db_service.go │ │ │ └── minio_service.go │ │ ├── static │ │ ├── images │ │ │ └── werf-logo.svg │ │ ├── javascripts │ │ │ └── image.js │ │ └── stylesheets │ │ │ └── site.css │ │ ├── templates │ │ ├── image.html │ │ └── index.html │ │ └── werf.yaml ├── java_springboot │ ├── 010_basic_app │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── werf │ │ │ │ │ │ └── werfguidesapp │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ └── controllers │ │ │ │ │ │ └── PingController.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── werf │ │ │ │ └── werfguidesapp │ │ │ │ └── ApplicationTests.java │ │ └── werf.yaml │ ├── 020_logging │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── werf │ │ │ │ │ │ └── werfguidesapp │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ └── controllers │ │ │ │ │ │ └── PingController.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ └── log4j2-spring.xml │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── werf │ │ │ │ └── werfguidesapp │ │ │ │ └── ApplicationTests.java │ │ └── werf.yaml │ ├── 030_assets │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── werf │ │ │ │ │ │ └── werfguidesapp │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MvcConfig.java │ │ │ │ │ │ └── controllers │ │ │ │ │ │ ├── ImageController.java │ │ │ │ │ │ └── PingController.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── log4j2-spring.xml │ │ │ │ │ ├── static │ │ │ │ │ ├── images │ │ │ │ │ │ └── werf-logo.svg │ │ │ │ │ ├── javascripts │ │ │ │ │ │ └── image.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── site.css │ │ │ │ │ └── templates │ │ │ │ │ ├── image.html │ │ │ │ │ └── index.html │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── werf │ │ │ │ └── werfguidesapp │ │ │ │ └── ApplicationTests.java │ │ └── werf.yaml │ ├── 040_db │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── werf │ │ │ │ │ │ └── werfguidesapp │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ └── MvcConfig.java │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── ImageController.java │ │ │ │ │ │ ├── PingController.java │ │ │ │ │ │ └── TalkerController.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ └── Talker.java │ │ │ │ │ │ └── repos │ │ │ │ │ │ └── TalkersRepo.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── log4j2-spring.xml │ │ │ │ │ ├── static │ │ │ │ │ ├── images │ │ │ │ │ │ └── werf-logo.svg │ │ │ │ │ ├── javascripts │ │ │ │ │ │ └── image.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── site.css │ │ │ │ │ └── templates │ │ │ │ │ ├── image.html │ │ │ │ │ └── index.html │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── werf │ │ │ │ └── werfguidesapp │ │ │ │ └── ApplicationTests.java │ │ └── werf.yaml │ ├── 050_s3 │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── werf │ │ │ │ │ │ └── werfguidesapp │ │ │ │ │ │ ├── Application.java │ │ │ │ │ │ ├── components │ │ │ │ │ │ └── MinioComponent.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── MinioConfig.java │ │ │ │ │ │ └── MvcConfig.java │ │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── ImageController.java │ │ │ │ │ │ ├── MinioController.java │ │ │ │ │ │ ├── PingController.java │ │ │ │ │ │ └── TalkerController.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ └── Talker.java │ │ │ │ │ │ └── repos │ │ │ │ │ │ └── TalkersRepo.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── log4j2-spring.xml │ │ │ │ │ ├── static │ │ │ │ │ ├── images │ │ │ │ │ │ └── werf-logo.svg │ │ │ │ │ ├── javascripts │ │ │ │ │ │ └── image.js │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── site.css │ │ │ │ │ └── templates │ │ │ │ │ ├── image.html │ │ │ │ │ └── index.html │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── werf │ │ │ │ └── werfguidesapp │ │ │ │ └── ApplicationTests.java │ │ └── werf.yaml │ └── 080_configuration │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ ├── secret-values.yaml │ │ ├── templates │ │ │ ├── configmap-app-envs.yaml │ │ │ ├── configmap-db-envs.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── secret-app-envs.yaml │ │ │ ├── secret-db-envs.yaml │ │ │ ├── secret-minio-envs.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ │ └── values.yaml │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── .werf │ │ └── nginx.conf │ │ ├── .werf_secret_key │ │ ├── Dockerfile │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── werf │ │ │ │ │ └── werfguidesapp │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── components │ │ │ │ │ └── MinioComponent.java │ │ │ │ │ ├── config │ │ │ │ │ ├── MinioConfig.java │ │ │ │ │ └── MvcConfig.java │ │ │ │ │ ├── controllers │ │ │ │ │ ├── ImageController.java │ │ │ │ │ ├── MinioController.java │ │ │ │ │ ├── PingController.java │ │ │ │ │ └── TalkerController.java │ │ │ │ │ ├── domain │ │ │ │ │ └── Talker.java │ │ │ │ │ └── repos │ │ │ │ │ └── TalkersRepo.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── log4j2-spring.xml │ │ │ │ ├── static │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ ├── javascripts │ │ │ │ │ └── image.js │ │ │ │ └── stylesheets │ │ │ │ │ └── site.css │ │ │ │ └── templates │ │ │ │ ├── image.html │ │ │ │ └── index.html │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── werf │ │ │ └── werfguidesapp │ │ │ └── ApplicationTests.java │ │ └── werf.yaml ├── laravel │ ├── 000_app │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── README.md │ │ ├── app.db │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── Controller.php │ │ │ │ │ └── LabelController.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── EncryptCookies.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrustProxies.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Models │ │ │ │ └── Label.php │ │ │ └── Providers │ │ │ │ ├── AppServiceProvider.php │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── auth.php │ │ │ ├── broadcasting.php │ │ │ ├── cache.php │ │ │ ├── cors.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── hashing.php │ │ │ ├── logging.php │ │ │ ├── mail.php │ │ │ ├── queue.php │ │ │ ├── report.php │ │ │ ├── services.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ ├── migrations │ │ │ │ └── 2021_01_27_224414_create_labels_table.php │ │ │ └── seeders │ │ │ │ └── DatabaseSeeder.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── phpunit.xml │ │ ├── public │ │ │ ├── .htaccess │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── web.config │ │ ├── routes │ │ │ ├── api.php │ │ │ ├── channels.php │ │ │ ├── console.php │ │ │ └── web.php │ │ ├── server.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ └── tests │ │ │ ├── CreatesApplication.php │ │ │ └── TestCase.php │ ├── 010_basic_app │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ ├── nginx.conf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ └── PingController.php │ │ │ │ └── Kernel.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── docker-compose.yml │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ └── werf.yaml │ ├── 020_logging │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ ├── nginx.conf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ └── PingController.php │ │ │ │ └── Kernel.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── logging.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── docker-compose.yml │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ ├── werf-converge.log │ │ └── werf.yaml │ ├── 030_assets │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ ├── nginx.conf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ └── PingController.php │ │ │ │ └── Kernel.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── logging.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── resources │ │ │ ├── css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── views │ │ │ │ └── image.blade.php │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ ├── webpack.mix.js │ │ ├── werf-converge.log │ │ └── werf.yaml │ ├── 040_db │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-migrate-db.yaml │ │ │ │ └── service.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ ├── nginx.conf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── PingController.php │ │ │ │ │ └── TalkerController.php │ │ │ │ └── Kernel.php │ │ │ ├── Models │ │ │ │ └── Talker.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── database.php │ │ │ ├── logging.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ └── migrations │ │ │ │ ├── 2021_10_04_000000_create_talkers_table.php │ │ │ │ └── 2021_10_04_000001_add_name_to_talkers.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── resources │ │ │ ├── css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── views │ │ │ │ └── image.blade.php │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ ├── webpack.mix.js │ │ ├── werf-converge.log │ │ └── werf.yaml │ ├── 050_s3 │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-migrate-db.yaml │ │ │ │ ├── job-setup-minio.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ ├── nginx.conf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── PingController.php │ │ │ │ │ ├── S3FileController.php │ │ │ │ │ └── TalkerController.php │ │ │ │ └── Kernel.php │ │ │ ├── Models │ │ │ │ └── Talker.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── logging.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ └── migrations │ │ │ │ ├── 2021_10_04_000000_create_talkers_table.php │ │ │ │ └── 2021_10_04_000001_add_name_to_talkers.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── resources │ │ │ ├── css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── views │ │ │ │ └── image.blade.php │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ ├── webpack.mix.js │ │ ├── werf-converge.log │ │ └── werf.yaml │ ├── 080_configuration │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .helm │ │ │ ├── secret-values.yaml │ │ │ ├── templates │ │ │ │ ├── configmap-app-envs.yaml │ │ │ │ ├── configmap-nginx.yaml │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-migrate-db.yaml │ │ │ │ ├── job-setup-minio.yaml │ │ │ │ ├── secret-app-envs.yaml │ │ │ │ ├── secret-db-envs.yaml │ │ │ │ ├── secret-minio-envs.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ │ └── values.yaml │ │ ├── .styleci.yml │ │ ├── .werf │ │ │ └── zzz-php-fpm-config.conf │ │ ├── .werf_secret_key │ │ ├── Dockerfile │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── PingController.php │ │ │ │ │ ├── S3FileController.php │ │ │ │ │ └── TalkerController.php │ │ │ │ └── Kernel.php │ │ │ ├── Models │ │ │ │ └── Talker.php │ │ │ └── Providers │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── logging.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ └── migrations │ │ │ │ ├── 2021_10_04_000000_create_talkers_table.php │ │ │ │ └── 2021_10_04_000001_add_name_to_talkers.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ └── robots.txt │ │ ├── resources │ │ │ ├── css │ │ │ │ └── site.css │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── views │ │ │ │ └── image.blade.php │ │ ├── routes │ │ │ └── web.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ ├── webpack.mix.js │ │ ├── werf-converge.log │ │ └── werf.yaml │ ├── 250_files │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── README.md │ │ ├── app.db │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Helpers │ │ │ │ ├── ReportHelper.php │ │ │ │ └── ReportHelper │ │ │ │ │ └── Report.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── LabelController.php │ │ │ │ │ └── ReportController.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── EncryptCookies.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrustProxies.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Models │ │ │ │ └── Label.php │ │ │ └── Providers │ │ │ │ ├── AppServiceProvider.php │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── auth.php │ │ │ ├── broadcasting.php │ │ │ ├── cache.php │ │ │ ├── cors.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── hashing.php │ │ │ ├── logging.php │ │ │ ├── mail.php │ │ │ ├── queue.php │ │ │ ├── report.php │ │ │ ├── services.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ ├── migrations │ │ │ │ └── 2021_01_27_224414_create_labels_table.php │ │ │ └── seeders │ │ │ │ └── DatabaseSeeder.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── phpunit.xml │ │ ├── public │ │ │ ├── .htaccess │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── web.config │ │ ├── routes │ │ │ ├── api.php │ │ │ ├── channels.php │ │ │ ├── console.php │ │ │ └── web.php │ │ ├── server.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ └── tests │ │ │ ├── CreatesApplication.php │ │ │ └── TestCase.php │ ├── 260_email │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── README.md │ │ ├── app.db │ │ ├── app │ │ │ ├── Console │ │ │ │ └── Kernel.php │ │ │ ├── Exceptions │ │ │ │ └── Handler.php │ │ │ ├── Helpers │ │ │ │ ├── ReportHelper.php │ │ │ │ └── ReportHelper │ │ │ │ │ └── Report.php │ │ │ ├── Http │ │ │ │ ├── Controllers │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── LabelController.php │ │ │ │ │ └── ReportController.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── Authenticate.php │ │ │ │ │ ├── EncryptCookies.php │ │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── TrustHosts.php │ │ │ │ │ ├── TrustProxies.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Models │ │ │ │ └── Label.php │ │ │ └── Providers │ │ │ │ ├── AppServiceProvider.php │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── BroadcastServiceProvider.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ │ ├── app.php │ │ │ └── cache │ │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ │ ├── app.php │ │ │ ├── auth.php │ │ │ ├── broadcasting.php │ │ │ ├── cache.php │ │ │ ├── cors.php │ │ │ ├── database.php │ │ │ ├── filesystems.php │ │ │ ├── hashing.php │ │ │ ├── logging.php │ │ │ ├── mail.php │ │ │ ├── queue.php │ │ │ ├── report.php │ │ │ ├── services.php │ │ │ ├── session.php │ │ │ └── view.php │ │ ├── database │ │ │ ├── .gitignore │ │ │ ├── migrations │ │ │ │ └── 2021_01_27_224414_create_labels_table.php │ │ │ └── seeders │ │ │ │ └── DatabaseSeeder.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── phpunit.xml │ │ ├── public │ │ │ ├── .htaccess │ │ │ ├── favicon.ico │ │ │ ├── index.php │ │ │ ├── robots.txt │ │ │ └── web.config │ │ ├── routes │ │ │ ├── api.php │ │ │ ├── channels.php │ │ │ ├── console.php │ │ │ └── web.php │ │ ├── server.php │ │ ├── storage │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ └── public │ │ │ │ │ └── .gitignore │ │ │ ├── framework │ │ │ │ ├── .gitignore │ │ │ │ ├── cache │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── data │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── sessions │ │ │ │ │ └── .gitignore │ │ │ │ ├── testing │ │ │ │ │ └── .gitignore │ │ │ │ └── views │ │ │ │ │ └── .gitignore │ │ │ └── logs │ │ │ │ └── .gitignore │ │ └── tests │ │ │ ├── CreatesApplication.php │ │ │ └── TestCase.php │ └── 280_database │ │ ├── .editorconfig │ │ ├── .env.example │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .styleci.yml │ │ ├── README.md │ │ ├── app │ │ ├── Console │ │ │ └── Kernel.php │ │ ├── Exceptions │ │ │ └── Handler.php │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ ├── Controller.php │ │ │ │ └── LabelController.php │ │ │ ├── Kernel.php │ │ │ └── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── EncryptCookies.php │ │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ │ ├── RedirectIfAuthenticated.php │ │ │ │ ├── TrimStrings.php │ │ │ │ ├── TrustHosts.php │ │ │ │ ├── TrustProxies.php │ │ │ │ └── VerifyCsrfToken.php │ │ ├── Models │ │ │ └── Label.php │ │ └── Providers │ │ │ ├── AppServiceProvider.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── artisan │ │ ├── bootstrap │ │ ├── app.php │ │ └── cache │ │ │ └── .gitignore │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ ├── app.php │ │ ├── auth.php │ │ ├── broadcasting.php │ │ ├── cache.php │ │ ├── cors.php │ │ ├── database.php │ │ ├── filesystems.php │ │ ├── hashing.php │ │ ├── logging.php │ │ ├── mail.php │ │ ├── queue.php │ │ ├── report.php │ │ ├── services.php │ │ ├── session.php │ │ └── view.php │ │ ├── database │ │ ├── .gitignore │ │ ├── migrations │ │ │ └── 2021_01_27_224414_create_labels_table.php │ │ └── seeders │ │ │ └── DatabaseSeeder.php │ │ ├── docker-compose.yml │ │ ├── package.json │ │ ├── phpunit.xml │ │ ├── public │ │ ├── .htaccess │ │ ├── favicon.ico │ │ ├── index.php │ │ ├── robots.txt │ │ └── web.config │ │ ├── routes │ │ ├── api.php │ │ ├── channels.php │ │ ├── console.php │ │ └── web.php │ │ ├── server.php │ │ ├── storage │ │ ├── app │ │ │ ├── .gitignore │ │ │ └── public │ │ │ │ └── .gitignore │ │ ├── framework │ │ │ ├── .gitignore │ │ │ ├── cache │ │ │ │ ├── .gitignore │ │ │ │ └── data │ │ │ │ │ └── .gitignore │ │ │ ├── sessions │ │ │ │ └── .gitignore │ │ │ ├── testing │ │ │ │ └── .gitignore │ │ │ └── views │ │ │ │ └── .gitignore │ │ └── logs │ │ │ └── .gitignore │ │ └── tests │ │ ├── CreatesApplication.php │ │ └── TestCase.php ├── nodejs │ ├── 010_basic_app │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .prettierrc.yaml │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── stylesheets │ │ │ │ └── style.css │ │ ├── routes │ │ │ ├── index.js │ │ │ └── ping.js │ │ └── werf.yaml │ ├── 020_logging │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .prettierrc.yaml │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── index.html │ │ │ └── stylesheets │ │ │ │ └── style.css │ │ ├── routes │ │ │ ├── index.js │ │ │ └── ping.js │ │ └── werf.yaml │ ├── 030_assets │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ ├── .prettierrc.yaml │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ ├── javascripts │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ └── pages │ │ │ │ ├── image.html │ │ │ │ └── index.html │ │ ├── routes │ │ │ ├── image.js │ │ │ ├── index.js │ │ │ └── ping.js │ │ ├── webpack.config.js │ │ └── werf.yaml │ ├── 040_db │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ └── service.yaml │ │ ├── .prettierrc.yaml │ │ ├── .sequelizerc │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── config │ │ │ └── database.json │ │ ├── db │ │ │ ├── migrations │ │ │ │ └── 20211101064002-create-talker.js │ │ │ └── models │ │ │ │ ├── index.js │ │ │ │ └── talker.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ ├── javascripts │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ └── pages │ │ │ │ ├── image.html │ │ │ │ └── index.html │ │ ├── routes │ │ │ ├── image.js │ │ │ ├── index.js │ │ │ ├── ping.js │ │ │ └── talkers.js │ │ ├── webpack.config.js │ │ └── werf.yaml │ ├── 050_s3 │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ │ └── templates │ │ │ │ ├── database.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ │ ├── job-setup-minio.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── storage.yaml │ │ ├── .prettierrc.yaml │ │ ├── .sequelizerc │ │ ├── .werf │ │ │ └── nginx.conf │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ │ └── www │ │ ├── config │ │ │ ├── database.json │ │ │ └── minio.json │ │ ├── db │ │ │ ├── migrations │ │ │ │ └── 20211101064002-create-talker.js │ │ │ └── models │ │ │ │ ├── index.js │ │ │ │ └── talker.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ └── werf-logo.svg │ │ │ │ ├── javascripts │ │ │ │ │ ├── image.js │ │ │ │ │ └── index.js │ │ │ │ └── stylesheets │ │ │ │ │ ├── image.css │ │ │ │ │ └── style.css │ │ │ └── pages │ │ │ │ ├── image.html │ │ │ │ └── index.html │ │ ├── routes │ │ │ ├── files.js │ │ │ ├── image.js │ │ │ ├── index.js │ │ │ ├── ping.js │ │ │ └── talkers.js │ │ ├── webpack.config.js │ │ └── werf.yaml │ └── 080_configuration │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .helm │ │ ├── secret-values.yaml │ │ ├── templates │ │ │ ├── configmap-app-envs.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ ├── job-setup-minio.yaml │ │ │ ├── secret-app-envs.yaml │ │ │ ├── secret-db-envs.yaml │ │ │ ├── secret-minio-envs.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ │ └── values.yaml │ │ ├── .prettierrc.yaml │ │ ├── .sequelizerc │ │ ├── .werf_secret_key │ │ ├── Dockerfile │ │ ├── app.js │ │ ├── bin │ │ └── www │ │ ├── config │ │ ├── custom-environment-variables.json │ │ ├── database.js │ │ ├── default.json │ │ ├── development.json │ │ ├── production.json │ │ └── test.json │ │ ├── db │ │ ├── migrations │ │ │ └── 20211101064002-create-talker.js │ │ └── models │ │ │ ├── index.js │ │ │ └── talker.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── assets │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── javascripts │ │ │ │ ├── image.js │ │ │ │ └── index.js │ │ │ └── stylesheets │ │ │ │ ├── image.css │ │ │ │ └── style.css │ │ └── pages │ │ │ ├── image.html │ │ │ └── index.html │ │ ├── routes │ │ ├── files.js │ │ ├── image.js │ │ ├── index.js │ │ ├── ping.js │ │ └── talkers.js │ │ ├── webpack.config.js │ │ └── werf.yaml └── rails │ ├── 010_basic_app │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ └── controllers │ │ │ └── application_controller.rb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ └── rake │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── secrets.yml │ └── werf.yaml │ ├── 019_fixup_consistency │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── .rspec │ ├── .ruby-version │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── api │ │ │ │ └── labels_controller.rb │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── label.rb │ │ └── views │ │ │ ├── api │ │ │ └── labels │ │ │ │ ├── _label.json.jbuilder │ │ │ │ ├── index.json.jbuilder │ │ │ │ └── show.json.jbuilder │ │ │ └── layouts │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ └── spring │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── cors.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yaml │ │ ├── spring.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210128150624_create_labels.rb │ │ │ └── 20210526202700_add_timestamps_to_labels.rb │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib │ │ └── tasks │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ └── robots.txt │ ├── spec │ │ ├── factories │ │ │ └── labels.rb │ │ ├── models │ │ │ └── label_spec.rb │ │ ├── rails_helper.rb │ │ ├── requests │ │ │ └── labels_spec.rb │ │ ├── routing │ │ │ └── labels_routing_spec.rb │ │ └── spec_helper.rb │ ├── storage │ │ └── .keep │ ├── test │ │ ├── channels │ │ │ └── application_cable │ │ │ │ └── connection_test.rb │ │ ├── controllers │ │ │ └── .keep │ │ ├── fixtures │ │ │ ├── .keep │ │ │ └── files │ │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ └── test_helper.rb │ ├── tmp │ │ ├── .keep │ │ └── pids │ │ │ └── .keep │ ├── vendor │ │ └── .keep │ └── werf.yaml │ ├── 020_logging │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ └── controllers │ │ │ └── application_controller.rb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ └── rake │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── initializers │ │ │ └── filter_parameter_logging.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── secrets.yml │ ├── lib │ │ └── json_simple_formatter.rb │ └── werf.yaml │ ├── 030_assets │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── .werf │ │ └── nginx.conf │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ └── application_controller.rb │ │ ├── javascript │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── packs │ │ │ │ └── application.js │ │ │ ├── src │ │ │ │ └── image.js │ │ │ └── styles │ │ │ │ └── site.css │ │ └── views │ │ │ └── layouts │ │ │ └── image.html.erb │ ├── babel.config.js │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── webpack │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── initializers │ │ │ └── filter_parameter_logging.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── webpack │ │ │ ├── environment.js │ │ │ └── production.js │ │ └── webpacker.yml │ ├── lib │ │ └── json_simple_formatter.rb │ ├── package.json │ ├── postcss.config.js │ ├── werf.yaml │ └── yarn.lock │ ├── 040_db │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ └── service.yaml │ ├── .werf │ │ └── nginx.conf │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── talker_controller.rb │ │ ├── javascript │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── packs │ │ │ │ └── application.js │ │ │ ├── src │ │ │ │ └── image.js │ │ │ └── styles │ │ │ │ └── site.css │ │ ├── models │ │ │ └── talker.rb │ │ └── views │ │ │ └── layouts │ │ │ └── image.html.erb │ ├── babel.config.js │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── webpack │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── initializers │ │ │ └── filter_parameter_logging.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── webpack │ │ │ ├── environment.js │ │ │ └── production.js │ │ └── webpacker.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210817162438_create_talkers.rb │ │ │ └── 20210817164348_add_name_to_talkers.rb │ │ └── schema.rb │ ├── lib │ │ └── json_simple_formatter.rb │ ├── package.json │ ├── postcss.config.js │ ├── werf.yaml │ └── yarn.lock │ ├── 050_s3 │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ ├── job-setup-minio.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ ├── .werf │ │ └── nginx.conf │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── s3_file_controller.rb │ │ │ └── talker_controller.rb │ │ ├── javascript │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── packs │ │ │ │ └── application.js │ │ │ ├── src │ │ │ │ └── image.js │ │ │ └── styles │ │ │ │ └── site.css │ │ ├── models │ │ │ ├── s3_file.rb │ │ │ └── talker.rb │ │ └── views │ │ │ └── layouts │ │ │ └── image.html.erb │ ├── babel.config.js │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── webpack │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── initializers │ │ │ └── filter_parameter_logging.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── storage.yml │ │ ├── webpack │ │ │ ├── environment.js │ │ │ └── production.js │ │ └── webpacker.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210817162438_create_talkers.rb │ │ │ ├── 20210817164348_add_name_to_talkers.rb │ │ │ ├── 20210830170827_create_active_storage_tables.active_storage.rb │ │ │ └── 20210830171006_create_s3_files.rb │ │ └── schema.rb │ ├── lib │ │ └── json_simple_formatter.rb │ ├── package.json │ ├── postcss.config.js │ ├── werf.yaml │ └── yarn.lock │ ├── 080_configuration │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ ├── secret-values.yaml │ │ ├── templates │ │ │ ├── configmap-app-envs.yaml │ │ │ ├── configmap-nginx.yaml │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── job-db-setup-and-migrate.yaml │ │ │ ├── job-setup-minio.yaml │ │ │ ├── secret-app-envs.yaml │ │ │ ├── secret-db-envs.yaml │ │ │ ├── secret-minio-envs.yaml │ │ │ ├── service.yaml │ │ │ └── storage.yaml │ │ └── values.yaml │ ├── .werf_secret_key │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── Rakefile │ ├── app │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── s3_file_controller.rb │ │ │ └── talker_controller.rb │ │ ├── javascript │ │ │ ├── images │ │ │ │ └── werf-logo.svg │ │ │ ├── packs │ │ │ │ └── application.js │ │ │ ├── src │ │ │ │ └── image.js │ │ │ └── styles │ │ │ │ └── site.css │ │ ├── models │ │ │ ├── s3_file.rb │ │ │ └── talker.rb │ │ └── views │ │ │ └── layouts │ │ │ └── image.html.erb │ ├── babel.config.js │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── webpack │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ └── production.rb │ │ ├── initializers │ │ │ └── filter_parameter_logging.rb │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yml │ │ ├── storage.yml │ │ ├── webpack │ │ │ ├── environment.js │ │ │ └── production.js │ │ └── webpacker.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210817162438_create_talkers.rb │ │ │ ├── 20210817164348_add_name_to_talkers.rb │ │ │ ├── 20210830170827_create_active_storage_tables.active_storage.rb │ │ │ └── 20210830171006_create_s3_files.rb │ │ └── schema.rb │ ├── lib │ │ └── json_simple_formatter.rb │ ├── package.json │ ├── postcss.config.js │ ├── werf.yaml │ └── yarn.lock │ ├── 1100_configuration_image_per_ruby │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ └── templates │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ ├── .rspec │ ├── .ruby-version │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── api │ │ │ │ └── labels_controller.rb │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── label.rb │ │ └── views │ │ │ ├── api │ │ │ └── labels │ │ │ │ ├── _label.json.jbuilder │ │ │ │ ├── index.json.jbuilder │ │ │ │ └── show.json.jbuilder │ │ │ └── layouts │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ └── spring │ ├── changelog.yaml │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── cors.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yaml │ │ ├── spring.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210128150624_create_labels.rb │ │ │ └── 20210526202700_add_timestamps_to_labels.rb │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib │ │ └── tasks │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ └── robots.txt │ ├── spec │ │ ├── factories │ │ │ └── labels.rb │ │ ├── models │ │ │ └── label_spec.rb │ │ ├── rails_helper.rb │ │ ├── requests │ │ │ └── labels_spec.rb │ │ ├── routing │ │ │ └── labels_routing_spec.rb │ │ └── spec_helper.rb │ ├── storage │ │ └── .keep │ ├── test │ │ ├── channels │ │ │ └── application_cable │ │ │ │ └── connection_test.rb │ │ ├── controllers │ │ │ └── .keep │ │ ├── fixtures │ │ │ ├── .keep │ │ │ └── files │ │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ └── test_helper.rb │ ├── tmp │ │ ├── .keep │ │ └── pids │ │ │ └── .keep │ ├── vendor │ │ └── .keep │ └── werf.yaml │ ├── 1101_configuration_inputs │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ │ ├── templates │ │ │ ├── database.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── .rspec │ ├── .ruby-version │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── api │ │ │ │ └── labels_controller.rb │ │ │ ├── application_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ ├── concerns │ │ │ │ └── .keep │ │ │ └── label.rb │ │ └── views │ │ │ ├── api │ │ │ └── labels │ │ │ │ ├── _label.json.jbuilder │ │ │ │ ├── index.json.jbuilder │ │ │ │ └── show.json.jbuilder │ │ │ └── layouts │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ └── spring │ ├── changelog.yaml │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── cors.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── secrets.yaml │ │ ├── spring.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ ├── 20210128150624_create_labels.rb │ │ │ └── 20210526202700_add_timestamps_to_labels.rb │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib │ │ └── tasks │ │ │ └── .keep │ ├── log │ │ └── .keep │ ├── public │ │ └── robots.txt │ ├── spec │ │ ├── factories │ │ │ └── labels.rb │ │ ├── models │ │ │ └── label_spec.rb │ │ ├── rails_helper.rb │ │ ├── requests │ │ │ └── labels_spec.rb │ │ ├── routing │ │ │ └── labels_routing_spec.rb │ │ └── spec_helper.rb │ ├── storage │ │ └── .keep │ ├── test │ │ ├── channels │ │ │ └── application_cable │ │ │ │ └── connection_test.rb │ │ ├── controllers │ │ │ └── .keep │ │ ├── fixtures │ │ │ ├── .keep │ │ │ └── files │ │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ └── test_helper.rb │ ├── tmp │ │ ├── .keep │ │ └── pids │ │ │ └── .keep │ ├── vendor │ │ └── .keep │ ├── werf-giterminism.yaml │ └── werf.yaml │ └── 800_cron │ ├── .browserslistrc │ ├── .dockerignore │ ├── .gitignore │ ├── .helm │ └── templates │ │ ├── cleanup-labels.yaml │ │ ├── database.yaml │ │ ├── debug-mails.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── send-report.yaml │ │ └── service.yaml │ ├── .rspec │ ├── .ruby-version │ ├── Dockerfile │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── api │ │ │ └── labels_controller.rb │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ ├── application_mailer.rb │ │ └── notifications_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── label.rb │ └── views │ │ ├── api │ │ └── labels │ │ │ ├── _label.json.jbuilder │ │ │ ├── index.json.jbuilder │ │ │ └── show.json.jbuilder │ │ ├── layouts │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ └── notifications_mailer │ │ └── labels_count_report_email.html.erb │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ └── spring │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── backtrace_silencers.rb │ │ ├── cors.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── secrets.yaml │ ├── spring.rb │ └── storage.yml │ ├── db │ ├── migrate │ │ ├── 20210128150624_create_labels.rb │ │ └── 20210526202700_add_timestamps_to_labels.rb │ ├── schema.rb │ └── seeds.rb │ ├── lib │ └── tasks │ │ ├── .keep │ │ └── crons.rake │ ├── log │ └── .keep │ ├── public │ └── robots.txt │ ├── spec │ ├── factories │ │ └── labels.rb │ ├── models │ │ └── label_spec.rb │ ├── rails_helper.rb │ ├── requests │ │ └── labels_spec.rb │ ├── routing │ │ └── labels_routing_spec.rb │ └── spec_helper.rb │ ├── storage │ └── .keep │ ├── test │ ├── channels │ │ └── application_cable │ │ │ └── connection_test.rb │ ├── controllers │ │ └── .keep │ ├── fixtures │ │ ├── .keep │ │ └── files │ │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ └── test_helper.rb │ ├── tmp │ ├── .keep │ └── pids │ │ └── .keep │ ├── vendor │ └── .keep │ └── werf.yaml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── install.sh ├── kubedog.asc ├── mstile-150x150.png ├── pages_en ├── 404.md ├── about │ ├── changelog.html │ └── release_channels.html ├── feed.xml ├── guides.md ├── guides │ ├── django │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── golang │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── index.md │ ├── java_springboot │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── laravel │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── nodejs │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ └── rails │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ ├── 10_build.md │ │ ├── 20_cluster.md │ │ ├── 30_deploy.md │ │ ├── 35_deploy_changes.md │ │ ├── 38_kubernetes_basics.md │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ ├── 010_basic_app.md │ │ ├── 020_logging.md │ │ ├── 030_assets.md │ │ ├── 040_db.md │ │ ├── 050_s3.md │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ ├── 010_life_cycle.md │ │ ├── 020_high_availability.md │ │ └── 030_resource_management.md ├── index.md ├── publications.html └── quickstart-success.md ├── pages_ru ├── 404.md ├── about │ ├── changelog.html │ └── release_channels.html ├── feed.xml ├── guides.md ├── guides │ ├── django │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── golang │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── index.md │ ├── java_springboot │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── laravel │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ ├── nodejs │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ │ ├── 10_build.md │ │ │ ├── 20_cluster.md │ │ │ ├── 30_deploy.md │ │ │ ├── 35_deploy_changes.md │ │ │ ├── 38_kubernetes_basics.md │ │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ │ ├── 010_basic_app.md │ │ │ ├── 020_logging.md │ │ │ ├── 030_assets.md │ │ │ ├── 040_db.md │ │ │ ├── 050_s3.md │ │ │ └── 080_configuration.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ │ ├── 010_life_cycle.md │ │ │ ├── 020_high_availability.md │ │ │ └── 030_resource_management.md │ └── rails │ │ ├── 100_basic.md │ │ ├── 100_basic │ │ ├── 10_build.md │ │ ├── 20_cluster.md │ │ ├── 30_deploy.md │ │ ├── 35_deploy_changes.md │ │ ├── 38_kubernetes_basics.md │ │ └── 40_must_haves.md │ │ ├── 200_real_apps.md │ │ ├── 200_real_apps │ │ ├── 010_basic_app.md │ │ ├── 020_logging.md │ │ ├── 030_assets.md │ │ ├── 040_db.md │ │ ├── 050_s3.md │ │ ├── 080_configuration.md │ │ └── 60_cron.md │ │ ├── 300_deployment_practices.md │ │ └── 300_deployment_practices │ │ ├── 010_life_cycle.md │ │ ├── 020_high_availability.md │ │ └── 030_resource_management.md ├── index.md ├── publications.html └── viewer.html ├── robots.txt ├── safari-pinned-tab.svg ├── scripts ├── demo │ ├── README.md │ ├── _type_and_execute.sh │ ├── env.sh │ ├── prepare_sample_app.sh │ ├── raw_scenario │ │ ├── build.sh │ │ ├── cleanup.sh │ │ ├── deploy.sh │ │ ├── distribute.sh │ │ ├── failed_deploy_with_helm-2.sh │ │ ├── failed_deploy_with_helm.sh │ │ ├── failed_deploy_with_werf.sh │ │ ├── introduce_error.sh │ │ ├── successful_deploy_with_helm-2.sh │ │ ├── successful_deploy_with_helm.sh │ │ ├── successful_deploy_with_werf.sh │ │ └── test.sh │ ├── record_build.sh │ ├── record_cleanup.sh │ ├── record_deploy.sh │ ├── record_distribute.sh │ ├── record_failed_deploy.sh │ ├── record_failed_deploy_with_helm.sh │ ├── record_failed_deploy_with_werf.sh │ ├── record_successful_deploy.sh │ ├── record_successful_deploy_with_helm.sh │ ├── record_successful_deploy_with_werf.sh │ ├── record_test.sh │ ├── registry │ │ ├── Dockerfile │ │ ├── publish.sh │ │ └── werf.yaml │ ├── reset.sh │ ├── run_failed_deploy.sh │ ├── run_successful_deploy.sh │ └── type.sh └── docs │ ├── check_broken_links.sh │ └── spelling │ ├── dictionaries │ ├── dev_OPS.aff │ ├── dev_OPS.dic │ ├── en_US.aff │ ├── en_US.dic │ ├── ru_RU.aff │ └── ru_RU.dic │ ├── internal │ ├── clear_html_from_code.py │ ├── container_spell_check.sh │ └── filesignore │ ├── sorter │ └── Dockerfile │ ├── spell_check.sh │ └── wordlist ├── site.webmanifest ├── sitemap-site.xml ├── sitemap.xml ├── ssi ├── banner.html ├── channel-menu-v2.html ├── channel-menu.html ├── configurator.html ├── footer.html ├── group-menu-v2.html ├── group-menu.html ├── guides-landing-tiles.md ├── head-common.html ├── topnav.html └── version-menu.html ├── werf-giterminism.yaml ├── werf.asc └── werf.yaml /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.github/workflows/cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.gitignore -------------------------------------------------------------------------------- /.helm/templates/12-backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/templates/12-backend.yaml -------------------------------------------------------------------------------- /.helm/templates/14-tuf-router.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/templates/14-tuf-router.yaml -------------------------------------------------------------------------------- /.helm/templates/20-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/templates/20-ingress.yaml -------------------------------------------------------------------------------- /.helm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/templates/_helpers.tpl -------------------------------------------------------------------------------- /.helm/templates/_rewrites.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/templates/_rewrites.tpl -------------------------------------------------------------------------------- /.helm/trdl_channels-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/trdl_channels-dev.yaml -------------------------------------------------------------------------------- /.helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.helm/values.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .helm 2 | examples/ 3 | werf*.yaml -------------------------------------------------------------------------------- /.werf/artifacts/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/artifacts/convert -------------------------------------------------------------------------------- /.werf/artifacts/generate_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/artifacts/generate_artifacts.sh -------------------------------------------------------------------------------- /.werf/artifacts/get_git_history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/artifacts/get_git_history.sh -------------------------------------------------------------------------------- /.werf/nginx-dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/nginx-dev.conf -------------------------------------------------------------------------------- /.werf/nginx-tuf-router.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/nginx-tuf-router.conf -------------------------------------------------------------------------------- /.werf/tuf-router.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/.werf/tuf-router.lua -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/Taskfile.yaml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_config.yml -------------------------------------------------------------------------------- /_config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_config_dev.yml -------------------------------------------------------------------------------- /_config_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_config_en.yml -------------------------------------------------------------------------------- /_config_ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_config_ru.yml -------------------------------------------------------------------------------- /_data/_common/channels_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/channels_info.yml -------------------------------------------------------------------------------- /_data/_common/channels_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/channels_versions.json -------------------------------------------------------------------------------- /_data/_common/frameworks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/frameworks.yml -------------------------------------------------------------------------------- /_data/_common/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/i18n.yaml -------------------------------------------------------------------------------- /_data/_common/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/releases.json -------------------------------------------------------------------------------- /_data/_common/releases_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/_common/releases_history.json -------------------------------------------------------------------------------- /_data/en/breadcrumbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/breadcrumbs.yml -------------------------------------------------------------------------------- /_data/en/common: -------------------------------------------------------------------------------- 1 | ../_common -------------------------------------------------------------------------------- /_data/en/guides/breadcrumbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/guides/breadcrumbs.yml -------------------------------------------------------------------------------- /_data/en/guides/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/guides/links.yaml -------------------------------------------------------------------------------- /_data/en/publications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/publications.yml -------------------------------------------------------------------------------- /_data/en/sidebars/guide.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/sidebars/guide.yml -------------------------------------------------------------------------------- /_data/en/topnav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/en/topnav.yml -------------------------------------------------------------------------------- /_data/ru/breadcrumbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/breadcrumbs.yml -------------------------------------------------------------------------------- /_data/ru/common: -------------------------------------------------------------------------------- 1 | ../_common -------------------------------------------------------------------------------- /_data/ru/guides/breadcrumbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/guides/breadcrumbs.yml -------------------------------------------------------------------------------- /_data/ru/guides/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/guides/links.yaml -------------------------------------------------------------------------------- /_data/ru/publications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/publications.yml -------------------------------------------------------------------------------- /_data/ru/sidebars/guide.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/sidebars/guide.yml -------------------------------------------------------------------------------- /_data/ru/topnav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_data/ru/topnav.yml -------------------------------------------------------------------------------- /_includes/_common/channel-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/channel-menu.html -------------------------------------------------------------------------------- /_includes/_common/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/footer.html -------------------------------------------------------------------------------- /_includes/_common/group-menu-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/group-menu-v2.html -------------------------------------------------------------------------------- /_includes/_common/group-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/group-menu.html -------------------------------------------------------------------------------- /_includes/_common/head-common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/head-common.html -------------------------------------------------------------------------------- /_includes/_common/head.html.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/head.html.liquid -------------------------------------------------------------------------------- /_includes/_common/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/intro.md -------------------------------------------------------------------------------- /_includes/_common/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/publications.html -------------------------------------------------------------------------------- /_includes/_common/scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/scheme.md -------------------------------------------------------------------------------- /_includes/_common/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/sidebar.html -------------------------------------------------------------------------------- /_includes/_common/slack_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/slack_popup.html -------------------------------------------------------------------------------- /_includes/_common/snippetcut_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/snippetcut_example -------------------------------------------------------------------------------- /_includes/_common/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/toc.html -------------------------------------------------------------------------------- /_includes/_common/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/topnav.html -------------------------------------------------------------------------------- /_includes/_common/version-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/version-menu.html -------------------------------------------------------------------------------- /_includes/_common/warning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_includes/_common/warning.html -------------------------------------------------------------------------------- /_includes/en/common: -------------------------------------------------------------------------------- 1 | ../_common -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/golang/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- ":" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/golang/010_return_pong.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/java_springboot/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "." -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/java_springboot/003_notification.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/java_springboot/005_add_ping.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/laravel/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " by the command:" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/nodejs/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " by the command:" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/010_basic_app/rails/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " by the command:" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "INFO" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "LOG_LEVEL" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/django/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/025_log_parsing.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "debug" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "GIN_MODE" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/golang/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/java_springboot/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/java_springboot/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/java_springboot/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/java_springboot/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "php-fpm and" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "LOG_LEVEL" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/laravel/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/nodejs/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/nodejs/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/nodejs/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | info -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/nodejs/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | LOG_LEVEL -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/nodejs/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/rails/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/rails/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/020_logging/rails/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "RAILS_LOG_LEVEL" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/django/001_js_css_builder.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/django/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "of a Django application" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/golang/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Go application" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/laravel/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "php-fpm" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/nodejs/001_js_css_builder.md.liquid: -------------------------------------------------------------------------------- 1 | webpack -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/nodejs/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | Node.js 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/rails/001_js_css_builder.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Webpacker (instead of Sprockets)" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/030_assets/rails/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Puma" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/django/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/django/026_mysql_test_spoiler.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/django/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/010_new_controllers.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/013_list_of_routes.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/024_about_method_2.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/026_mysql_test_spoiler.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/golang/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/010_new_controllers.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/013_list_of_routes.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/023_about_method.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/025_migration_job.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/java_springboot/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/040_db/laravel/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/django/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/django/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/django/030_job_minio.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/django/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/golang/001_preparing.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/golang/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/golang/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/golang/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/java_springboot/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/java_springboot/015_add_new_routes.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/java_springboot/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/java_springboot/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/laravel/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/laravel/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/laravel/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/nodejs/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/nodejs/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/nodejs/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/050_s3/rails/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " and model" -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/080_configuration/django/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/080_configuration/golang/055_loginpas_storage.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Helm charts or Values," -}} -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/080_configuration/golang/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/080_configuration/java_springboot/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/200_real_apps/080_configuration/laravel/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/guides/400_ci_cd_workflow.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/en/layouts: -------------------------------------------------------------------------------- 1 | ../_layouts -------------------------------------------------------------------------------- /_includes/en/snippetcut_example: -------------------------------------------------------------------------------- 1 | ../_common/snippetcut_example -------------------------------------------------------------------------------- /_includes/ru/common: -------------------------------------------------------------------------------- 1 | ../_common -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/django/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " командой:" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/framework_id/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " командой:" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/golang/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- ":" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/golang/010_return_pong.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/java_springboot/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "." -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/java_springboot/003_notification.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/java_springboot/005_add_ping.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/laravel/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " командой:" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/nodejs/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " командой:" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/010_basic_app/rails/002_wirh_command.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " командой:" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "INFO" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "LOG_LEVEL" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/django/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/025_log_parsing.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "debug" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "GIN_MODE" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/golang/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/java_springboot/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/java_springboot/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/java_springboot/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/java_springboot/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "php-fpm и" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/033_default_json.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "LOG_LEVEL" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/laravel/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/nodejs/015_direction_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/nodejs/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/nodejs/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | info -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/nodejs/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | LOG_LEVEL -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/nodejs/040_filtering_logs.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/rails/017_additional_entity.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/rails/035_fr_loglevel.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "info" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/020_logging/rails/036_fr_def_log_var.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "RAILS_LOG_LEVEL" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/django/001_js_css_builder.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/django/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "приложения Django" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/golang/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Go-приложения" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/laravel/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "php-fpm" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/nodejs/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | Node.js 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/030_assets/rails/030_framework_scaling.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Puma" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/django/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/django/026_mysql_test_spoiler.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/django/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/010_new_controllers.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/013_list_of_routes.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/024_about_method_2.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/026_mysql_test_spoiler.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/golang/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/010_new_controllers.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/013_list_of_routes.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/015_two_simple_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/023_about_method.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/025_migration_job.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/java_springboot/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/040_db/laravel/027_init_container.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/django/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/django/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/django/030_job_minio.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/django/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/golang/001_preparing.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/golang/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/golang/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/golang/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/java_springboot/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/java_springboot/015_add_new_routes.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/java_springboot/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/java_springboot/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/laravel/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/laravel/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/laravel/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/nodejs/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/nodejs/020_new_migrations.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/nodejs/040_minio_activation.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/050_s3/rails/005_add_model.md.liquid: -------------------------------------------------------------------------------- 1 | {{- " и модель" -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/django/055_loginpas_storage.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "env деплоймента," -}} 2 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/django/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/golang/055_loginpas_storage.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "Helm-чартах или Values," -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/golang/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/java_springboot/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/laravel/055_loginpas_storage.md.liquid: -------------------------------------------------------------------------------- 1 | {{- "манифесте контроллера," -}} -------------------------------------------------------------------------------- /_includes/ru/guides/200_real_apps/080_configuration/laravel/085_configs_including.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/guides/400_ci_cd_workflow.md.liquid: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/ru/installation/installer_windows.md: -------------------------------------------------------------------------------- 1 | В разработке. 2 | -------------------------------------------------------------------------------- /_includes/ru/layouts: -------------------------------------------------------------------------------- 1 | ../_layouts -------------------------------------------------------------------------------- /_includes/ru/snippetcut_example: -------------------------------------------------------------------------------- 1 | ../_common/snippetcut_example -------------------------------------------------------------------------------- /_layouts/default-guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/default-guides.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/guides-development.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/guides-development.html -------------------------------------------------------------------------------- /_layouts/guides-landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/guides-landing.html -------------------------------------------------------------------------------- /_layouts/guides-page-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/guides-page-base.html -------------------------------------------------------------------------------- /_layouts/guides-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/guides-page.html -------------------------------------------------------------------------------- /_layouts/guides-wip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/guides-wip.html -------------------------------------------------------------------------------- /_layouts/none.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | {{content}} -------------------------------------------------------------------------------- /_layouts/page-nosidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/page-nosidebar.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/plain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/plain.html -------------------------------------------------------------------------------- /_layouts/sidebar-nosidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/sidebar-nosidebar.html -------------------------------------------------------------------------------- /_layouts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_layouts/sidebar.html -------------------------------------------------------------------------------- /_plugins/custom_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/custom_filters.rb -------------------------------------------------------------------------------- /_plugins/filesused.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/filesused.rb -------------------------------------------------------------------------------- /_plugins/offtopic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/offtopic.rb -------------------------------------------------------------------------------- /_plugins/plugin_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/plugin_utils.rb -------------------------------------------------------------------------------- /_plugins/raise_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/raise_error.rb -------------------------------------------------------------------------------- /_plugins/snippetcut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/snippetcut.rb -------------------------------------------------------------------------------- /_plugins/tree_file_viewer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/tree_file_viewer.rb -------------------------------------------------------------------------------- /_plugins/variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/_plugins/variables.rb -------------------------------------------------------------------------------- /android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/android-chrome-192x192.png -------------------------------------------------------------------------------- /android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/android-chrome-256x256.png -------------------------------------------------------------------------------- /apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/css/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/asciinema-player.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/changelog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/changelog.css -------------------------------------------------------------------------------- /assets/css/configuration-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/configuration-table.css -------------------------------------------------------------------------------- /assets/css/configurator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/configurator.css -------------------------------------------------------------------------------- /assets/css/customstyles-guides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/customstyles-guides.scss -------------------------------------------------------------------------------- /assets/css/docs-guides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/docs-guides.scss -------------------------------------------------------------------------------- /assets/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/docs.css -------------------------------------------------------------------------------- /assets/css/featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/featherlight.min.css -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /assets/css/guides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/guides.css -------------------------------------------------------------------------------- /assets/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/header.css -------------------------------------------------------------------------------- /assets/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/index.css -------------------------------------------------------------------------------- /assets/css/installation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/installation.css -------------------------------------------------------------------------------- /assets/css/introduction.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/introduction.css -------------------------------------------------------------------------------- /assets/css/landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/landing.scss -------------------------------------------------------------------------------- /assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/normalize.css -------------------------------------------------------------------------------- /assets/css/overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/overview.css -------------------------------------------------------------------------------- /assets/css/printstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/printstyles.css -------------------------------------------------------------------------------- /assets/css/publications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/publications.css -------------------------------------------------------------------------------- /assets/css/release-channels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/release-channels.css -------------------------------------------------------------------------------- /assets/css/releases.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/releases.css -------------------------------------------------------------------------------- /assets/css/submenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/submenu.css -------------------------------------------------------------------------------- /assets/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/syntax.css -------------------------------------------------------------------------------- /assets/css/tab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/css/tab.css -------------------------------------------------------------------------------- /assets/demo/build.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/build.cast -------------------------------------------------------------------------------- /assets/demo/cleanup.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/cleanup.cast -------------------------------------------------------------------------------- /assets/demo/deploy.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/deploy.cast -------------------------------------------------------------------------------- /assets/demo/distribute.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/distribute.cast -------------------------------------------------------------------------------- /assets/demo/failed_deploy.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/failed_deploy.cast -------------------------------------------------------------------------------- /assets/demo/failed_deploy_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/failed_deploy_output.html -------------------------------------------------------------------------------- /assets/demo/successful_deploy.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/successful_deploy.cast -------------------------------------------------------------------------------- /assets/demo/test.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/demo/test.cast -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/404.png -------------------------------------------------------------------------------- /assets/images/arrow-guides-tiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/arrow-guides-tiles.svg -------------------------------------------------------------------------------- /assets/images/arrow-guides.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/arrow-guides.svg -------------------------------------------------------------------------------- /assets/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/arrow.svg -------------------------------------------------------------------------------- /assets/images/backgrounds/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/backgrounds/intro.svg -------------------------------------------------------------------------------- /assets/images/backgrounds/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/backgrounds/stats.svg -------------------------------------------------------------------------------- /assets/images/backgrounds/welcome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/backgrounds/welcome.svg -------------------------------------------------------------------------------- /assets/images/cncf-logo-small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/cncf-logo-small.svg -------------------------------------------------------------------------------- /assets/images/cncf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/cncf-logo.svg -------------------------------------------------------------------------------- /assets/images/company_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/company_logo.png -------------------------------------------------------------------------------- /assets/images/company_logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/company_logo_big.png -------------------------------------------------------------------------------- /assets/images/crane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/crane.svg -------------------------------------------------------------------------------- /assets/images/file-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/file-icon.svg -------------------------------------------------------------------------------- /assets/images/flant-logo-en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/flant-logo-en.svg -------------------------------------------------------------------------------- /assets/images/flant-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/flant-logo.svg -------------------------------------------------------------------------------- /assets/images/folder-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/folder-icon.svg -------------------------------------------------------------------------------- /assets/images/guides/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/django.png -------------------------------------------------------------------------------- /assets/images/guides/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/gitlab.png -------------------------------------------------------------------------------- /assets/images/guides/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/go.svg -------------------------------------------------------------------------------- /assets/images/guides/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/laravel.svg -------------------------------------------------------------------------------- /assets/images/guides/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/nodejs.png -------------------------------------------------------------------------------- /assets/images/guides/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/rails.svg -------------------------------------------------------------------------------- /assets/images/guides/rails/assets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/rails/assets.jpg -------------------------------------------------------------------------------- /assets/images/guides/springboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/guides/springboot.png -------------------------------------------------------------------------------- /assets/images/icons/bluesky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/bluesky.svg -------------------------------------------------------------------------------- /assets/images/icons/box-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/box-icon.svg -------------------------------------------------------------------------------- /assets/images/icons/bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/bullet.svg -------------------------------------------------------------------------------- /assets/images/icons/certificate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/certificate.svg -------------------------------------------------------------------------------- /assets/images/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/check.svg -------------------------------------------------------------------------------- /assets/images/icons/discourse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/discourse.svg -------------------------------------------------------------------------------- /assets/images/icons/discussions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/discussions.svg -------------------------------------------------------------------------------- /assets/images/icons/dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/dropdown.svg -------------------------------------------------------------------------------- /assets/images/icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/external.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-debug.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-easy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-easy.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-fast.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-helm.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-size.svg -------------------------------------------------------------------------------- /assets/images/icons/feature-usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/feature-usage.svg -------------------------------------------------------------------------------- /assets/images/icons/finger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/finger.svg -------------------------------------------------------------------------------- /assets/images/icons/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/gear.svg -------------------------------------------------------------------------------- /assets/images/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/github.svg -------------------------------------------------------------------------------- /assets/images/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/heart.png -------------------------------------------------------------------------------- /assets/images/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/heart.svg -------------------------------------------------------------------------------- /assets/images/icons/puzzles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/puzzles.svg -------------------------------------------------------------------------------- /assets/images/icons/question_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/question_mark.svg -------------------------------------------------------------------------------- /assets/images/icons/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/rss.svg -------------------------------------------------------------------------------- /assets/images/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/search.svg -------------------------------------------------------------------------------- /assets/images/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/slack.svg -------------------------------------------------------------------------------- /assets/images/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/star.svg -------------------------------------------------------------------------------- /assets/images/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/telegram.svg -------------------------------------------------------------------------------- /assets/images/icons/triangel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/icons/triangel.svg -------------------------------------------------------------------------------- /assets/images/illustrations/goals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/illustrations/goals.svg -------------------------------------------------------------------------------- /assets/images/illustrations/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/illustrations/stats.svg -------------------------------------------------------------------------------- /assets/images/in_development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/in_development.png -------------------------------------------------------------------------------- /assets/images/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/intro.svg -------------------------------------------------------------------------------- /assets/images/introduction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction.svg -------------------------------------------------------------------------------- /assets/images/introduction/nav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/nav.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-1.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-10.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-11.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-12.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-13.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-14.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-2.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-3.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-4.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-5.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-6.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-7.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-8.svg -------------------------------------------------------------------------------- /assets/images/introduction/s-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/introduction/s-9.svg -------------------------------------------------------------------------------- /assets/images/landing/django.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/django.png -------------------------------------------------------------------------------- /assets/images/landing/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/django.svg -------------------------------------------------------------------------------- /assets/images/landing/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/gitlab.png -------------------------------------------------------------------------------- /assets/images/landing/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/go.svg -------------------------------------------------------------------------------- /assets/images/landing/golang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/golang.svg -------------------------------------------------------------------------------- /assets/images/landing/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/laravel.svg -------------------------------------------------------------------------------- /assets/images/landing/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/nodejs.png -------------------------------------------------------------------------------- /assets/images/landing/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/nodejs.svg -------------------------------------------------------------------------------- /assets/images/landing/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/parrot.png -------------------------------------------------------------------------------- /assets/images/landing/parrot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/parrot2.png -------------------------------------------------------------------------------- /assets/images/landing/parrot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/parrot3.png -------------------------------------------------------------------------------- /assets/images/landing/parrot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/parrot4.png -------------------------------------------------------------------------------- /assets/images/landing/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/rails.svg -------------------------------------------------------------------------------- /assets/images/landing/springboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/landing/springboot.png -------------------------------------------------------------------------------- /assets/images/publications/en_140120.png: -------------------------------------------------------------------------------- 1 | ru_140120.png -------------------------------------------------------------------------------- /assets/images/publications/en_251019.png: -------------------------------------------------------------------------------- 1 | ru_240119.jpg -------------------------------------------------------------------------------- /assets/images/publications/en_261119.png: -------------------------------------------------------------------------------- 1 | ru_211119.png -------------------------------------------------------------------------------- /assets/images/publications/en_311019.png: -------------------------------------------------------------------------------- 1 | ru_071019.png -------------------------------------------------------------------------------- /assets/images/publications/ru_061020.png: -------------------------------------------------------------------------------- 1 | en_051020.png -------------------------------------------------------------------------------- /assets/images/publications/ru_210819.png: -------------------------------------------------------------------------------- 1 | en_230819.png -------------------------------------------------------------------------------- /assets/images/publications/ru_240919.png: -------------------------------------------------------------------------------- 1 | en_041019.png -------------------------------------------------------------------------------- /assets/images/publications/ru_300819.png: -------------------------------------------------------------------------------- 1 | en_090919.png -------------------------------------------------------------------------------- /assets/images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/share.png -------------------------------------------------------------------------------- /assets/images/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/telegram.svg -------------------------------------------------------------------------------- /assets/images/werf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/werf-logo.svg -------------------------------------------------------------------------------- /assets/images/werf-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/werf-schema.png -------------------------------------------------------------------------------- /assets/images/werf-schema.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/werf-schema.svg -------------------------------------------------------------------------------- /assets/images/werf-schema_ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/werf-schema_ru.svg -------------------------------------------------------------------------------- /assets/images/werf-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/images/werf-time.svg -------------------------------------------------------------------------------- /assets/js/asciinema-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/asciinema-player.min.js -------------------------------------------------------------------------------- /assets/js/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/channels.js -------------------------------------------------------------------------------- /assets/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/clipboard.min.js -------------------------------------------------------------------------------- /assets/js/configurator/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/configurator/options.js -------------------------------------------------------------------------------- /assets/js/configurator/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/configurator/tabs.js -------------------------------------------------------------------------------- /assets/js/customscripts-guides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/customscripts-guides.js -------------------------------------------------------------------------------- /assets/js/customscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/customscripts.js -------------------------------------------------------------------------------- /assets/js/details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/details.js -------------------------------------------------------------------------------- /assets/js/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/environment.js -------------------------------------------------------------------------------- /assets/js/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/featherlight.min.js -------------------------------------------------------------------------------- /assets/js/installation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/installation.js -------------------------------------------------------------------------------- /assets/js/introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/introduction.js -------------------------------------------------------------------------------- /assets/js/jekyll-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jekyll-search.js -------------------------------------------------------------------------------- /assets/js/jquery-3.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jquery-3.1.0.min.js -------------------------------------------------------------------------------- /assets/js/jquery.localScroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jquery.localScroll.min.js -------------------------------------------------------------------------------- /assets/js/jquery.navgoco.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jquery.navgoco.min.js -------------------------------------------------------------------------------- /assets/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /assets/js/jquery.shuffle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/jquery.shuffle.min.js -------------------------------------------------------------------------------- /assets/js/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/landing.js -------------------------------------------------------------------------------- /assets/js/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/masonry.pkgd.min.js -------------------------------------------------------------------------------- /assets/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/popup.js -------------------------------------------------------------------------------- /assets/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/tab.js -------------------------------------------------------------------------------- /assets/js/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/tippy.js -------------------------------------------------------------------------------- /assets/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/assets/js/toc.js -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/common.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/handlers.go -------------------------------------------------------------------------------- /backend/httpLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/httpLog.go -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/backend/main_test.go -------------------------------------------------------------------------------- /bin/configurator/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/config.go -------------------------------------------------------------------------------- /bin/configurator/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/config.yml -------------------------------------------------------------------------------- /bin/configurator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/go.mod -------------------------------------------------------------------------------- /bin/configurator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/go.sum -------------------------------------------------------------------------------- /bin/configurator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/main.go -------------------------------------------------------------------------------- /bin/configurator/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/bin/configurator/util.go -------------------------------------------------------------------------------- /browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/browserconfig.xml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /examples/basic/000_app/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/000_app/start.sh -------------------------------------------------------------------------------- /examples/basic/001_build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/001_build/Dockerfile -------------------------------------------------------------------------------- /examples/basic/001_build/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/001_build/start.sh -------------------------------------------------------------------------------- /examples/basic/001_build/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/001_build/werf.yaml -------------------------------------------------------------------------------- /examples/basic/002_deploy/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/basic/002_deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/002_deploy/Dockerfile -------------------------------------------------------------------------------- /examples/basic/002_deploy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/002_deploy/start.sh -------------------------------------------------------------------------------- /examples/basic/002_deploy/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/002_deploy/werf.yaml -------------------------------------------------------------------------------- /examples/basic/003_scale/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/basic/003_scale/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/003_scale/Dockerfile -------------------------------------------------------------------------------- /examples/basic/003_scale/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/003_scale/start.sh -------------------------------------------------------------------------------- /examples/basic/003_scale/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/basic/003_scale/werf.yaml -------------------------------------------------------------------------------- /examples/basic/004_modify_app/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/basic/005_kubernetes_basics/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/configurator/ci-cd/best-practice/with-common-ci-cd/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/configurator/local-dev/frontend.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM nginx:stable-alpine 2 | WORKDIR /www 3 | -------------------------------------------------------------------------------- /examples/django/010_basic_app/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/010_basic_app/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/010_basic_app/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/020_logging/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/020_logging/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/020_logging/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/020_logging/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/020_logging/werf.yaml -------------------------------------------------------------------------------- /examples/django/030_assets/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/030_assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/030_assets/.gitignore -------------------------------------------------------------------------------- /examples/django/030_assets/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/030_assets/Dockerfile -------------------------------------------------------------------------------- /examples/django/030_assets/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/030_assets/app/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/030_assets/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/030_assets/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/030_assets/werf.yaml -------------------------------------------------------------------------------- /examples/django/040_db/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/040_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/040_db/.gitignore -------------------------------------------------------------------------------- /examples/django/040_db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/040_db/Dockerfile -------------------------------------------------------------------------------- /examples/django/040_db/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/040_db/app/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/040_db/app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/040_db/app/manage.py -------------------------------------------------------------------------------- /examples/django/040_db/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/040_db/app/talkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/040_db/app/talkers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/040_db/app/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/040_db/app/uwsgi.ini -------------------------------------------------------------------------------- /examples/django/040_db/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/040_db/werf.yaml -------------------------------------------------------------------------------- /examples/django/050_s3/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/050_s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/050_s3/.gitignore -------------------------------------------------------------------------------- /examples/django/050_s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/050_s3/Dockerfile -------------------------------------------------------------------------------- /examples/django/050_s3/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/050_s3/app/manage.py -------------------------------------------------------------------------------- /examples/django/050_s3/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/storage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/talkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/talkers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/050_s3/app/uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/050_s3/app/uwsgi.ini -------------------------------------------------------------------------------- /examples/django/050_s3/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/django/050_s3/werf.yaml -------------------------------------------------------------------------------- /examples/django/080_configuration/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | -------------------------------------------------------------------------------- /examples/django/080_configuration/.werf_secret_key: -------------------------------------------------------------------------------- 1 | 6271c2008a8bd371e2ab306f2c509595 2 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/image/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/ping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/storage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/talkers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/django/080_configuration/app/talkers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/golang/010_basic_app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/010_basic_app/go.mod -------------------------------------------------------------------------------- /examples/golang/010_basic_app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/010_basic_app/go.sum -------------------------------------------------------------------------------- /examples/golang/020_logging/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/020_logging/go.mod -------------------------------------------------------------------------------- /examples/golang/020_logging/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/020_logging/go.sum -------------------------------------------------------------------------------- /examples/golang/020_logging/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/020_logging/werf.yaml -------------------------------------------------------------------------------- /examples/golang/030_assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/030_assets/.gitignore -------------------------------------------------------------------------------- /examples/golang/030_assets/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/030_assets/Dockerfile -------------------------------------------------------------------------------- /examples/golang/030_assets/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/030_assets/go.mod -------------------------------------------------------------------------------- /examples/golang/030_assets/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/030_assets/go.sum -------------------------------------------------------------------------------- /examples/golang/030_assets/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/030_assets/werf.yaml -------------------------------------------------------------------------------- /examples/golang/040_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/.gitignore -------------------------------------------------------------------------------- /examples/golang/040_db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/Dockerfile -------------------------------------------------------------------------------- /examples/golang/040_db/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/cmd/main.go -------------------------------------------------------------------------------- /examples/golang/040_db/db/migrations/000001_create_talkers_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS talkers; -------------------------------------------------------------------------------- /examples/golang/040_db/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/go.mod -------------------------------------------------------------------------------- /examples/golang/040_db/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/go.sum -------------------------------------------------------------------------------- /examples/golang/040_db/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/040_db/werf.yaml -------------------------------------------------------------------------------- /examples/golang/050_s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/.gitignore -------------------------------------------------------------------------------- /examples/golang/050_s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/Dockerfile -------------------------------------------------------------------------------- /examples/golang/050_s3/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/cmd/main.go -------------------------------------------------------------------------------- /examples/golang/050_s3/db/migrations/000001_create_talkers_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS talkers; -------------------------------------------------------------------------------- /examples/golang/050_s3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/go.mod -------------------------------------------------------------------------------- /examples/golang/050_s3/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/go.sum -------------------------------------------------------------------------------- /examples/golang/050_s3/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/golang/050_s3/werf.yaml -------------------------------------------------------------------------------- /examples/golang/080_configuration/.werf_secret_key: -------------------------------------------------------------------------------- 1 | a0d67d17862f148163fa7f64ed52a2e6 2 | -------------------------------------------------------------------------------- /examples/golang/080_configuration/db/migrations/000001_create_talkers_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS talkers; -------------------------------------------------------------------------------- /examples/java_springboot/010_basic_app/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/java_springboot/020_logging/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/java_springboot/030_assets/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/java_springboot/040_db/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/java_springboot/040_db/mvnw -------------------------------------------------------------------------------- /examples/java_springboot/050_s3/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/java_springboot/050_s3/mvnw -------------------------------------------------------------------------------- /examples/java_springboot/080_configuration/.werf_secret_key: -------------------------------------------------------------------------------- 1 | ea8027267b18044c560d14ae57308199 -------------------------------------------------------------------------------- /examples/laravel/000_app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/.env.example -------------------------------------------------------------------------------- /examples/laravel/000_app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/.gitignore -------------------------------------------------------------------------------- /examples/laravel/000_app/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/.styleci.yml -------------------------------------------------------------------------------- /examples/laravel/000_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/README.md -------------------------------------------------------------------------------- /examples/laravel/000_app/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/app.db -------------------------------------------------------------------------------- /examples/laravel/000_app/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/artisan -------------------------------------------------------------------------------- /examples/laravel/000_app/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/package.json -------------------------------------------------------------------------------- /examples/laravel/000_app/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/phpunit.xml -------------------------------------------------------------------------------- /examples/laravel/000_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/000_app/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/000_app/server.php -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/000_app/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/010_basic_app/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/020_logging/artisan -------------------------------------------------------------------------------- /examples/laravel/020_logging/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/020_logging/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/030_assets/artisan -------------------------------------------------------------------------------- /examples/laravel/030_assets/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/030_assets/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/030_assets/werf.yaml -------------------------------------------------------------------------------- /examples/laravel/040_db/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/.editorconfig -------------------------------------------------------------------------------- /examples/laravel/040_db/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/.env.example -------------------------------------------------------------------------------- /examples/laravel/040_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/.gitignore -------------------------------------------------------------------------------- /examples/laravel/040_db/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/.styleci.yml -------------------------------------------------------------------------------- /examples/laravel/040_db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/Dockerfile -------------------------------------------------------------------------------- /examples/laravel/040_db/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/artisan -------------------------------------------------------------------------------- /examples/laravel/040_db/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/composer.json -------------------------------------------------------------------------------- /examples/laravel/040_db/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/composer.lock -------------------------------------------------------------------------------- /examples/laravel/040_db/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /examples/laravel/040_db/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/040_db/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/040_db/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/040_db/werf.yaml -------------------------------------------------------------------------------- /examples/laravel/050_s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/050_s3/.gitignore -------------------------------------------------------------------------------- /examples/laravel/050_s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/050_s3/Dockerfile -------------------------------------------------------------------------------- /examples/laravel/050_s3/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/050_s3/artisan -------------------------------------------------------------------------------- /examples/laravel/050_s3/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/050_s3/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/050_s3/werf.yaml -------------------------------------------------------------------------------- /examples/laravel/080_configuration/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/080_configuration/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/250_files/app.db -------------------------------------------------------------------------------- /examples/laravel/250_files/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/250_files/artisan -------------------------------------------------------------------------------- /examples/laravel/250_files/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/250_files/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/250_files/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/260_email/app.db -------------------------------------------------------------------------------- /examples/laravel/260_email/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/laravel/260_email/artisan -------------------------------------------------------------------------------- /examples/laravel/260_email/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/260_email/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/260_email/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/laravel/280_database/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/laravel/280_database/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /examples/nodejs/010_basic_app/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/010_basic_app/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/020_logging/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/020_logging/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/020_logging/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/020_logging/app.js -------------------------------------------------------------------------------- /examples/nodejs/020_logging/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/020_logging/bin/www -------------------------------------------------------------------------------- /examples/nodejs/030_assets/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/030_assets/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/030_assets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/030_assets/app.js -------------------------------------------------------------------------------- /examples/nodejs/030_assets/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/030_assets/bin/www -------------------------------------------------------------------------------- /examples/nodejs/040_db/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/040_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/.gitignore -------------------------------------------------------------------------------- /examples/nodejs/040_db/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/040_db/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/.sequelizerc -------------------------------------------------------------------------------- /examples/nodejs/040_db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/Dockerfile -------------------------------------------------------------------------------- /examples/nodejs/040_db/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/app.js -------------------------------------------------------------------------------- /examples/nodejs/040_db/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/bin/www -------------------------------------------------------------------------------- /examples/nodejs/040_db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/package.json -------------------------------------------------------------------------------- /examples/nodejs/040_db/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/040_db/werf.yaml -------------------------------------------------------------------------------- /examples/nodejs/050_s3/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/050_s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/.gitignore -------------------------------------------------------------------------------- /examples/nodejs/050_s3/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/050_s3/.sequelizerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/.sequelizerc -------------------------------------------------------------------------------- /examples/nodejs/050_s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/Dockerfile -------------------------------------------------------------------------------- /examples/nodejs/050_s3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/app.js -------------------------------------------------------------------------------- /examples/nodejs/050_s3/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/bin/www -------------------------------------------------------------------------------- /examples/nodejs/050_s3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/package.json -------------------------------------------------------------------------------- /examples/nodejs/050_s3/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/nodejs/050_s3/werf.yaml -------------------------------------------------------------------------------- /examples/nodejs/080_configuration/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /log/* 4 | /tmp/* 5 | 6 | node_modules -------------------------------------------------------------------------------- /examples/nodejs/080_configuration/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | singleQuote: true -------------------------------------------------------------------------------- /examples/nodejs/080_configuration/config/development.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/nodejs/080_configuration/config/production.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/nodejs/080_configuration/config/test.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/rails/010_basic_app/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /.bundle 4 | /log/* 5 | /tmp/* 6 | -------------------------------------------------------------------------------- /examples/rails/010_basic_app/config/secrets.yml: -------------------------------------------------------------------------------- 1 | production: 2 | secret_key_base: something 3 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.1 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/config/secrets.yaml: -------------------------------------------------------------------------------- 1 | secret_key_base: <%= ENV.fetch("SECRET_KEY_BASE") %> 2 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/019_fixup_consistency/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/020_logging/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | 3 | /.bundle 4 | /log/* 5 | /tmp/* 6 | -------------------------------------------------------------------------------- /examples/rails/020_logging/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/020_logging/Gemfile -------------------------------------------------------------------------------- /examples/rails/020_logging/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/020_logging/Rakefile -------------------------------------------------------------------------------- /examples/rails/020_logging/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/020_logging/bin/rake -------------------------------------------------------------------------------- /examples/rails/020_logging/config/secrets.yml: -------------------------------------------------------------------------------- 1 | production: 2 | secret_key_base: something 3 | -------------------------------------------------------------------------------- /examples/rails/030_assets/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/030_assets/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/Gemfile -------------------------------------------------------------------------------- /examples/rails/030_assets/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/Rakefile -------------------------------------------------------------------------------- /examples/rails/030_assets/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/bin/rails -------------------------------------------------------------------------------- /examples/rails/030_assets/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/bin/rake -------------------------------------------------------------------------------- /examples/rails/030_assets/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/bin/yarn -------------------------------------------------------------------------------- /examples/rails/030_assets/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/config.ru -------------------------------------------------------------------------------- /examples/rails/030_assets/config/secrets.yml: -------------------------------------------------------------------------------- 1 | production: 2 | secret_key_base: something 3 | -------------------------------------------------------------------------------- /examples/rails/030_assets/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/werf.yaml -------------------------------------------------------------------------------- /examples/rails/030_assets/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/030_assets/yarn.lock -------------------------------------------------------------------------------- /examples/rails/040_db/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/040_db/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/.dockerignore -------------------------------------------------------------------------------- /examples/rails/040_db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/.gitignore -------------------------------------------------------------------------------- /examples/rails/040_db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/Dockerfile -------------------------------------------------------------------------------- /examples/rails/040_db/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/Gemfile -------------------------------------------------------------------------------- /examples/rails/040_db/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/Gemfile.lock -------------------------------------------------------------------------------- /examples/rails/040_db/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/Rakefile -------------------------------------------------------------------------------- /examples/rails/040_db/app/models/talker.rb: -------------------------------------------------------------------------------- 1 | class Talker < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /examples/rails/040_db/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/bin/bundle -------------------------------------------------------------------------------- /examples/rails/040_db/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/bin/rails -------------------------------------------------------------------------------- /examples/rails/040_db/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/bin/rake -------------------------------------------------------------------------------- /examples/rails/040_db/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/bin/webpack -------------------------------------------------------------------------------- /examples/rails/040_db/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/bin/yarn -------------------------------------------------------------------------------- /examples/rails/040_db/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/config.ru -------------------------------------------------------------------------------- /examples/rails/040_db/config/secrets.yml: -------------------------------------------------------------------------------- 1 | production: 2 | secret_key_base: something 3 | -------------------------------------------------------------------------------- /examples/rails/040_db/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/db/schema.rb -------------------------------------------------------------------------------- /examples/rails/040_db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/package.json -------------------------------------------------------------------------------- /examples/rails/040_db/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/werf.yaml -------------------------------------------------------------------------------- /examples/rails/040_db/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/040_db/yarn.lock -------------------------------------------------------------------------------- /examples/rails/050_s3/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/050_s3/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/.dockerignore -------------------------------------------------------------------------------- /examples/rails/050_s3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/.gitignore -------------------------------------------------------------------------------- /examples/rails/050_s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/Dockerfile -------------------------------------------------------------------------------- /examples/rails/050_s3/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/Gemfile -------------------------------------------------------------------------------- /examples/rails/050_s3/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/Gemfile.lock -------------------------------------------------------------------------------- /examples/rails/050_s3/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/Rakefile -------------------------------------------------------------------------------- /examples/rails/050_s3/app/models/s3_file.rb: -------------------------------------------------------------------------------- 1 | class S3File < ActiveRecord::Base 2 | has_one_attached :file 3 | end 4 | -------------------------------------------------------------------------------- /examples/rails/050_s3/app/models/talker.rb: -------------------------------------------------------------------------------- 1 | class Talker < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /examples/rails/050_s3/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/bin/bundle -------------------------------------------------------------------------------- /examples/rails/050_s3/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/bin/rails -------------------------------------------------------------------------------- /examples/rails/050_s3/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/bin/rake -------------------------------------------------------------------------------- /examples/rails/050_s3/bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/bin/webpack -------------------------------------------------------------------------------- /examples/rails/050_s3/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/bin/yarn -------------------------------------------------------------------------------- /examples/rails/050_s3/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/config.ru -------------------------------------------------------------------------------- /examples/rails/050_s3/config/secrets.yml: -------------------------------------------------------------------------------- 1 | production: 2 | secret_key_base: something 3 | -------------------------------------------------------------------------------- /examples/rails/050_s3/db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/db/schema.rb -------------------------------------------------------------------------------- /examples/rails/050_s3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/package.json -------------------------------------------------------------------------------- /examples/rails/050_s3/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/werf.yaml -------------------------------------------------------------------------------- /examples/rails/050_s3/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/050_s3/yarn.lock -------------------------------------------------------------------------------- /examples/rails/080_configuration/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/080_configuration/app/models/talker.rb: -------------------------------------------------------------------------------- 1 | class Talker < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /examples/rails/080_configuration/config/secrets.yml: -------------------------------------------------------------------------------- 1 | secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.1 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1100_configuration_image_per_ruby/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.1 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/config/secrets.yaml: -------------------------------------------------------------------------------- 1 | secret_key_base: <%= ENV.fetch("SECRET_KEY_BASE") %> 2 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/1101_configuration_inputs/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/.dockerignore: -------------------------------------------------------------------------------- 1 | /.helm/ 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/.gitignore -------------------------------------------------------------------------------- /examples/rails/800_cron/.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.1 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/Dockerfile -------------------------------------------------------------------------------- /examples/rails/800_cron/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/Gemfile -------------------------------------------------------------------------------- /examples/rails/800_cron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/README.md -------------------------------------------------------------------------------- /examples/rails/800_cron/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/Rakefile -------------------------------------------------------------------------------- /examples/rails/800_cron/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/bin/bundle -------------------------------------------------------------------------------- /examples/rails/800_cron/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/bin/rails -------------------------------------------------------------------------------- /examples/rails/800_cron/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/bin/rake -------------------------------------------------------------------------------- /examples/rails/800_cron/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/bin/setup -------------------------------------------------------------------------------- /examples/rails/800_cron/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/bin/spring -------------------------------------------------------------------------------- /examples/rails/800_cron/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/config.ru -------------------------------------------------------------------------------- /examples/rails/800_cron/config/secrets.yaml: -------------------------------------------------------------------------------- 1 | secret_key_base: <%= ENV.fetch("SECRET_KEY_BASE") %> 2 | -------------------------------------------------------------------------------- /examples/rails/800_cron/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/db/seeds.rb -------------------------------------------------------------------------------- /examples/rails/800_cron/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rails/800_cron/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/examples/rails/800_cron/werf.yaml -------------------------------------------------------------------------------- /favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/favicon-16x16.png -------------------------------------------------------------------------------- /favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/favicon-32x32.png -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/favicon.ico -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/install.sh -------------------------------------------------------------------------------- /kubedog.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/kubedog.asc -------------------------------------------------------------------------------- /mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/mstile-150x150.png -------------------------------------------------------------------------------- /pages_en/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/404.md -------------------------------------------------------------------------------- /pages_en/about/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/about/changelog.html -------------------------------------------------------------------------------- /pages_en/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/feed.xml -------------------------------------------------------------------------------- /pages_en/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides.md -------------------------------------------------------------------------------- /pages_en/guides/django/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides/django/100_basic.md -------------------------------------------------------------------------------- /pages_en/guides/golang/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides/golang/100_basic.md -------------------------------------------------------------------------------- /pages_en/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides/index.md -------------------------------------------------------------------------------- /pages_en/guides/nodejs/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides/nodejs/100_basic.md -------------------------------------------------------------------------------- /pages_en/guides/rails/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/guides/rails/100_basic.md -------------------------------------------------------------------------------- /pages_en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/index.md -------------------------------------------------------------------------------- /pages_en/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/publications.html -------------------------------------------------------------------------------- /pages_en/quickstart-success.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_en/quickstart-success.md -------------------------------------------------------------------------------- /pages_ru/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/404.md -------------------------------------------------------------------------------- /pages_ru/about/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/about/changelog.html -------------------------------------------------------------------------------- /pages_ru/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/feed.xml -------------------------------------------------------------------------------- /pages_ru/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides.md -------------------------------------------------------------------------------- /pages_ru/guides/django/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides/django/100_basic.md -------------------------------------------------------------------------------- /pages_ru/guides/golang/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides/golang/100_basic.md -------------------------------------------------------------------------------- /pages_ru/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides/index.md -------------------------------------------------------------------------------- /pages_ru/guides/nodejs/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides/nodejs/100_basic.md -------------------------------------------------------------------------------- /pages_ru/guides/rails/100_basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/guides/rails/100_basic.md -------------------------------------------------------------------------------- /pages_ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/index.md -------------------------------------------------------------------------------- /pages_ru/publications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/publications.html -------------------------------------------------------------------------------- /pages_ru/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/pages_ru/viewer.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/robots.txt -------------------------------------------------------------------------------- /safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/safari-pinned-tab.svg -------------------------------------------------------------------------------- /scripts/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/README.md -------------------------------------------------------------------------------- /scripts/demo/_type_and_execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/_type_and_execute.sh -------------------------------------------------------------------------------- /scripts/demo/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/env.sh -------------------------------------------------------------------------------- /scripts/demo/prepare_sample_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/prepare_sample_app.sh -------------------------------------------------------------------------------- /scripts/demo/raw_scenario/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/raw_scenario/build.sh -------------------------------------------------------------------------------- /scripts/demo/raw_scenario/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/raw_scenario/deploy.sh -------------------------------------------------------------------------------- /scripts/demo/raw_scenario/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/raw_scenario/test.sh -------------------------------------------------------------------------------- /scripts/demo/record_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/record_build.sh -------------------------------------------------------------------------------- /scripts/demo/record_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/record_cleanup.sh -------------------------------------------------------------------------------- /scripts/demo/record_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/record_deploy.sh -------------------------------------------------------------------------------- /scripts/demo/record_distribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/record_distribute.sh -------------------------------------------------------------------------------- /scripts/demo/record_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/record_test.sh -------------------------------------------------------------------------------- /scripts/demo/registry/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM registry:2 2 | ENV REGISTRY_STORAGE_DELETE_ENABLED=true 3 | -------------------------------------------------------------------------------- /scripts/demo/registry/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/registry/publish.sh -------------------------------------------------------------------------------- /scripts/demo/registry/werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/registry/werf.yaml -------------------------------------------------------------------------------- /scripts/demo/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/reset.sh -------------------------------------------------------------------------------- /scripts/demo/run_failed_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/run_failed_deploy.sh -------------------------------------------------------------------------------- /scripts/demo/type.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/demo/type.sh -------------------------------------------------------------------------------- /scripts/docs/check_broken_links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/docs/check_broken_links.sh -------------------------------------------------------------------------------- /scripts/docs/spelling/dictionaries/dev_OPS.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | -------------------------------------------------------------------------------- /scripts/docs/spelling/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/scripts/docs/spelling/wordlist -------------------------------------------------------------------------------- /site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/site.webmanifest -------------------------------------------------------------------------------- /sitemap-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/sitemap-site.xml -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/sitemap.xml -------------------------------------------------------------------------------- /ssi/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/banner.html -------------------------------------------------------------------------------- /ssi/channel-menu-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/channel-menu-v2.html -------------------------------------------------------------------------------- /ssi/channel-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/channel-menu.html -------------------------------------------------------------------------------- /ssi/configurator.html: -------------------------------------------------------------------------------- 1 | {% include configurator.html %} 2 | -------------------------------------------------------------------------------- /ssi/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/footer.html -------------------------------------------------------------------------------- /ssi/group-menu-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/group-menu-v2.html -------------------------------------------------------------------------------- /ssi/group-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/group-menu.html -------------------------------------------------------------------------------- /ssi/guides-landing-tiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/guides-landing-tiles.md -------------------------------------------------------------------------------- /ssi/head-common.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/head-common.html -------------------------------------------------------------------------------- /ssi/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/topnav.html -------------------------------------------------------------------------------- /ssi/version-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/ssi/version-menu.html -------------------------------------------------------------------------------- /werf-giterminism.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/werf-giterminism.yaml -------------------------------------------------------------------------------- /werf.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/werf.asc -------------------------------------------------------------------------------- /werf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/werf/website/HEAD/werf.yaml --------------------------------------------------------------------------------