├── .github ├── dependabot.yml ├── no-response.yml └── workflows │ ├── conformance.yml │ ├── lint.yml │ ├── no-response.yml │ ├── publish.yaml │ └── unit.yml ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── analysis_options.yaml ├── dartfn ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── bin │ └── dartfn.dart ├── build.yaml ├── dart_test.yaml ├── lib │ ├── functions_framework_tool.dart │ └── src │ │ ├── cli │ │ ├── app.dart │ │ ├── command.dart │ │ ├── command │ │ │ ├── generate.dart │ │ │ └── version.dart │ │ ├── console.dart │ │ ├── directory.dart │ │ ├── http_utils.dart │ │ └── terminal.dart │ │ ├── generators.dart │ │ ├── generators │ │ ├── cloudevent.dart │ │ ├── cloudevent.g.dart │ │ ├── helloworld.dart │ │ ├── helloworld.g.dart │ │ ├── json.dart │ │ └── json.g.dart │ │ ├── printer.dart │ │ ├── stagehand │ │ ├── common.dart │ │ └── stagehand.dart │ │ └── version.dart ├── mono_pkg.yaml ├── pubspec.yaml ├── templates │ ├── cloudevent │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── server.dart │ │ ├── lib │ │ │ └── functions.dart │ │ ├── mono_pkg.yaml │ │ ├── pubspec.yaml │ │ ├── sample │ │ │ └── data.json │ │ ├── test │ │ │ ├── function_test.dart │ │ │ └── src │ │ │ │ └── test_utils.dart │ │ └── tool │ │ │ ├── binary_mode_request.dart │ │ │ └── structured_mode_request.dart │ ├── helloworld │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── server.dart │ │ ├── lib │ │ │ └── functions.dart │ │ ├── mono_pkg.yaml │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── function_test.dart │ └── json │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ └── server.dart │ │ ├── lib │ │ ├── functions.dart │ │ └── functions.g.dart │ │ ├── mono_pkg.yaml │ │ ├── pubspec.yaml │ │ └── test │ │ └── function_test.dart ├── test │ ├── common_test.dart │ ├── ensure_build_test.dart │ ├── generators_test.dart │ ├── mock_test.dart │ └── validate_templates.dart └── tool │ ├── bashcmds │ └── builder │ ├── builder.dart │ └── src │ └── code_generator.dart ├── docs ├── 01-introduction.md ├── README.md ├── quickstarts │ ├── 00-install-dartfn.md │ ├── 01-quickstart-dart.md │ ├── 02-quickstart-docker.md │ ├── 03-quickstart-cloudrun.md │ └── assets │ │ └── helloworld-browser.png └── release_process.md ├── examples ├── fullstack │ ├── README.md │ ├── backend │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ │ └── server.dart │ │ ├── lib │ │ │ ├── api_types.dart │ │ │ ├── api_types.g.dart │ │ │ └── functions.dart │ │ ├── mono_pkg.yaml │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── function_test.dart │ ├── frontend-cli │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bin │ │ │ └── greet.dart │ │ ├── lib │ │ │ ├── api_types.dart │ │ │ └── api_types.g.dart │ │ ├── mono_pkg.yaml │ │ └── pubspec.yaml │ ├── frontend │ │ ├── .gitignore │ │ ├── README.md │ │ ├── assets │ │ │ └── config │ │ │ │ └── dev.json │ │ ├── lib │ │ │ ├── config.dart │ │ │ ├── main.dart │ │ │ ├── models │ │ │ │ └── app_model.dart │ │ │ ├── services │ │ │ │ ├── api.dart │ │ │ │ ├── api_types.dart │ │ │ │ └── api_types.g.dart │ │ │ └── views │ │ │ │ ├── greeting.dart │ │ │ │ ├── history_page.dart │ │ │ │ └── home_page.dart │ │ ├── linux │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ ├── main.cc │ │ │ ├── my_application.cc │ │ │ └── my_application.h │ │ ├── macos │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── Flutter-Debug.xcconfig │ │ │ │ ├── Flutter-Release.xcconfig │ │ │ │ └── GeneratedPluginRegistrant.swift │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon_1024.png │ │ │ │ │ ├── app_icon_128.png │ │ │ │ │ ├── app_icon_16.png │ │ │ │ │ ├── app_icon_256.png │ │ │ │ │ ├── app_icon_32.png │ │ │ │ │ ├── app_icon_512.png │ │ │ │ │ └── app_icon_64.png │ │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Configs │ │ │ │ ├── AppInfo.xcconfig │ │ │ │ ├── Debug.xcconfig │ │ │ │ ├── Release.xcconfig │ │ │ │ └── Warnings.xcconfig │ │ │ │ ├── DebugProfile.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── MainFlutterWindow.swift │ │ │ │ └── Release.entitlements │ │ ├── mono_pkg.yaml │ │ ├── pubspec.yaml │ │ ├── test │ │ │ └── widget_test.dart │ │ ├── web │ │ │ ├── favicon.png │ │ │ ├── icons │ │ │ │ ├── Icon-192.png │ │ │ │ └── Icon-512.png │ │ │ ├── index.html │ │ │ └── manifest.json │ │ └── windows │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ │ └── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── Runner.rc │ │ │ ├── flutter_window.cpp │ │ │ ├── flutter_window.h │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ ├── resources │ │ │ └── app_icon.ico │ │ │ ├── run_loop.cpp │ │ │ ├── run_loop.h │ │ │ ├── runner.exe.manifest │ │ │ ├── utils.cpp │ │ │ ├── utils.h │ │ │ ├── win32_window.cpp │ │ │ └── win32_window.h │ └── images │ │ └── flutter_demo.png ├── hello │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── server.dart │ ├── lib │ │ └── functions.dart │ ├── mono_pkg.yaml │ ├── pubspec.yaml │ └── test │ │ └── function_test.dart ├── json │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── server.dart │ ├── lib │ │ ├── functions.dart │ │ └── functions.g.dart │ ├── mono_pkg.yaml │ ├── pubspec.yaml │ └── test │ │ └── function_test.dart ├── protobuf_firestore │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ │ └── server.dart │ ├── lib │ │ ├── functions.dart │ │ └── src │ │ │ ├── function_types.dart │ │ │ └── google │ │ │ ├── analysis_options.yaml │ │ │ ├── events │ │ │ └── cloud │ │ │ │ └── firestore │ │ │ │ └── v1 │ │ │ │ ├── data.pb.dart │ │ │ │ ├── data.pbenum.dart │ │ │ │ ├── data.pbjson.dart │ │ │ │ ├── data.pbserver.dart │ │ │ │ ├── events.pb.dart │ │ │ │ ├── events.pbenum.dart │ │ │ │ ├── events.pbjson.dart │ │ │ │ └── events.pbserver.dart │ │ │ ├── protobuf │ │ │ ├── struct.pb.dart │ │ │ ├── struct.pbenum.dart │ │ │ ├── struct.pbjson.dart │ │ │ ├── struct.pbserver.dart │ │ │ ├── timestamp.pb.dart │ │ │ ├── timestamp.pbenum.dart │ │ │ ├── timestamp.pbjson.dart │ │ │ └── timestamp.pbserver.dart │ │ │ └── type │ │ │ ├── latlng.pb.dart │ │ │ ├── latlng.pbenum.dart │ │ │ ├── latlng.pbjson.dart │ │ │ └── latlng.pbserver.dart │ ├── mono_pkg.yaml │ ├── pubspec.yaml │ ├── sample │ │ └── data.json │ ├── test │ │ ├── decode_test.dart │ │ ├── function_test.dart │ │ ├── src │ │ │ └── test_utils.dart │ │ └── test_shared.dart │ └── tool │ │ └── regenerate_protos.sh └── raw_cloudevent │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── bin │ └── server.dart │ ├── lib │ └── functions.dart │ ├── mono_pkg.yaml │ ├── pubspec.yaml │ ├── sample │ └── data.json │ ├── test │ ├── function_test.dart │ └── src │ │ └── test_utils.dart │ └── tool │ ├── binary_mode_request.dart │ └── structured_mode_request.dart ├── functions_framework ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── build.yaml ├── dart_test.yaml ├── example │ └── readme.md ├── lib │ ├── functions_framework.dart │ ├── serve.dart │ └── src │ │ ├── cloud_event.dart │ │ ├── cloud_event.g.dart │ │ ├── cloud_function.dart │ │ ├── function_config.dart │ │ ├── function_target.dart │ │ ├── json_request_utils.dart │ │ ├── request_context.dart │ │ ├── run.dart │ │ ├── targets │ │ ├── cloud_event_targets.dart │ │ ├── http_targets.dart │ │ └── json_targets.dart │ │ └── typedefs.dart ├── mono_pkg.yaml ├── pubspec.yaml └── test │ └── ensure_build_test.dart ├── functions_framework_builder ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── build.yaml ├── lib │ ├── builder.dart │ └── src │ │ ├── analyzer_utils.dart │ │ ├── constants.dart │ │ ├── function_type_validator.dart │ │ ├── generic_function_type.dart │ │ ├── supported_function_type.dart │ │ └── valid_json_utils.dart ├── mono_pkg.yaml ├── pubspec.yaml └── test │ ├── builder_test.dart │ └── test_examples │ ├── complex_target_name_handlers.dart │ ├── freezed_style_json_mixin_handler.dart │ ├── valid_cloud_event_handlers.dart │ ├── valid_custom_type_handlers.dart │ ├── valid_json_type_handlers.dart │ └── valid_shelf_handlers.dart ├── google_cloud ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── example │ └── example.dart ├── lib │ ├── google_cloud.dart │ └── src │ │ ├── bad_configuration_exception.dart │ │ ├── bad_request_exception.dart │ │ ├── constants.dart │ │ ├── gcp_project.dart │ │ ├── log_severity.dart │ │ ├── logging.dart │ │ ├── serve.dart │ │ └── terminate.dart ├── mono_pkg.yaml ├── pubspec.yaml ├── test │ ├── gcp_test.dart │ └── src │ │ ├── listen_port_print.dart │ │ ├── project_id_print.dart │ │ └── terminate_print.dart └── tool │ ├── docker_test_script.sh │ └── fix_pubspec.dart ├── integration_test ├── .gitignore ├── bin │ └── server.dart ├── dart_test.yaml ├── lib │ ├── functions.dart │ └── src │ │ ├── conformance_handlers.dart │ │ ├── json_handlers.dart │ │ ├── pub_sub_types.dart │ │ ├── pub_sub_types.g.dart │ │ └── utils.dart ├── mono_pkg.yaml ├── pubspec.yaml └── test │ ├── cli_test.dart │ ├── cloud_behavior_test.dart │ ├── cloud_event_test.dart │ ├── custom_type_test.dart │ ├── ensure_build_test.dart │ ├── function_test.dart │ ├── logging_test.dart │ └── src │ └── test_utils.dart ├── mono_repo.yaml ├── pubspec.yaml └── tool ├── ci.sh └── pub_upgrade.dart /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/conformance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/workflows/conformance.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool 2 | pubspec.lock 3 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | functions_framework/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /dartfn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/.gitignore -------------------------------------------------------------------------------- /dartfn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/CHANGELOG.md -------------------------------------------------------------------------------- /dartfn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/LICENSE -------------------------------------------------------------------------------- /dartfn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/README.md -------------------------------------------------------------------------------- /dartfn/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/analysis_options.yaml -------------------------------------------------------------------------------- /dartfn/bin/dartfn.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/bin/dartfn.dart -------------------------------------------------------------------------------- /dartfn/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/build.yaml -------------------------------------------------------------------------------- /dartfn/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/dart_test.yaml -------------------------------------------------------------------------------- /dartfn/lib/functions_framework_tool.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/functions_framework_tool.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/app.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/command.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/command.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/command/generate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/command/generate.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/command/version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/command/version.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/console.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/console.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/directory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/directory.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/http_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/http_utils.dart -------------------------------------------------------------------------------- /dartfn/lib/src/cli/terminal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/cli/terminal.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/cloudevent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/cloudevent.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/cloudevent.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/cloudevent.g.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/helloworld.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/helloworld.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/helloworld.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/helloworld.g.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/json.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/json.dart -------------------------------------------------------------------------------- /dartfn/lib/src/generators/json.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/generators/json.g.dart -------------------------------------------------------------------------------- /dartfn/lib/src/printer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/printer.dart -------------------------------------------------------------------------------- /dartfn/lib/src/stagehand/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/stagehand/common.dart -------------------------------------------------------------------------------- /dartfn/lib/src/stagehand/stagehand.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/lib/src/stagehand/stagehand.dart -------------------------------------------------------------------------------- /dartfn/lib/src/version.dart: -------------------------------------------------------------------------------- 1 | // Generated code. Do not modify. 2 | const packageVersion = '0.4.7-wip'; 3 | -------------------------------------------------------------------------------- /dartfn/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/mono_pkg.yaml -------------------------------------------------------------------------------- /dartfn/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/pubspec.yaml -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/.dockerignore -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/.gitignore -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/Dockerfile -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/Makefile -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/README.md -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/analysis_options.yaml -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/bin/server.dart -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/lib/functions.dart -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/mono_pkg.yaml -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/pubspec.yaml -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/sample/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/sample/data.json -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/test/function_test.dart -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/test/src/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/test/src/test_utils.dart -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/tool/binary_mode_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/tool/binary_mode_request.dart -------------------------------------------------------------------------------- /dartfn/templates/cloudevent/tool/structured_mode_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/cloudevent/tool/structured_mode_request.dart -------------------------------------------------------------------------------- /dartfn/templates/helloworld/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/.dockerignore -------------------------------------------------------------------------------- /dartfn/templates/helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/.gitignore -------------------------------------------------------------------------------- /dartfn/templates/helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/Dockerfile -------------------------------------------------------------------------------- /dartfn/templates/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/Makefile -------------------------------------------------------------------------------- /dartfn/templates/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/README.md -------------------------------------------------------------------------------- /dartfn/templates/helloworld/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/analysis_options.yaml -------------------------------------------------------------------------------- /dartfn/templates/helloworld/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/bin/server.dart -------------------------------------------------------------------------------- /dartfn/templates/helloworld/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/lib/functions.dart -------------------------------------------------------------------------------- /dartfn/templates/helloworld/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/mono_pkg.yaml -------------------------------------------------------------------------------- /dartfn/templates/helloworld/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/pubspec.yaml -------------------------------------------------------------------------------- /dartfn/templates/helloworld/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/helloworld/test/function_test.dart -------------------------------------------------------------------------------- /dartfn/templates/json/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/.dockerignore -------------------------------------------------------------------------------- /dartfn/templates/json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/.gitignore -------------------------------------------------------------------------------- /dartfn/templates/json/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/Dockerfile -------------------------------------------------------------------------------- /dartfn/templates/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/Makefile -------------------------------------------------------------------------------- /dartfn/templates/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/README.md -------------------------------------------------------------------------------- /dartfn/templates/json/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/analysis_options.yaml -------------------------------------------------------------------------------- /dartfn/templates/json/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/bin/server.dart -------------------------------------------------------------------------------- /dartfn/templates/json/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/lib/functions.dart -------------------------------------------------------------------------------- /dartfn/templates/json/lib/functions.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/lib/functions.g.dart -------------------------------------------------------------------------------- /dartfn/templates/json/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/mono_pkg.yaml -------------------------------------------------------------------------------- /dartfn/templates/json/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/pubspec.yaml -------------------------------------------------------------------------------- /dartfn/templates/json/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/templates/json/test/function_test.dart -------------------------------------------------------------------------------- /dartfn/test/common_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/test/common_test.dart -------------------------------------------------------------------------------- /dartfn/test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/test/ensure_build_test.dart -------------------------------------------------------------------------------- /dartfn/test/generators_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/test/generators_test.dart -------------------------------------------------------------------------------- /dartfn/test/mock_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/test/mock_test.dart -------------------------------------------------------------------------------- /dartfn/test/validate_templates.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/test/validate_templates.dart -------------------------------------------------------------------------------- /dartfn/tool/bashcmds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/tool/bashcmds -------------------------------------------------------------------------------- /dartfn/tool/builder/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/tool/builder/builder.dart -------------------------------------------------------------------------------- /dartfn/tool/builder/src/code_generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/dartfn/tool/builder/src/code_generator.dart -------------------------------------------------------------------------------- /docs/01-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/01-introduction.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/quickstarts/00-install-dartfn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/quickstarts/00-install-dartfn.md -------------------------------------------------------------------------------- /docs/quickstarts/01-quickstart-dart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/quickstarts/01-quickstart-dart.md -------------------------------------------------------------------------------- /docs/quickstarts/02-quickstart-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/quickstarts/02-quickstart-docker.md -------------------------------------------------------------------------------- /docs/quickstarts/03-quickstart-cloudrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/quickstarts/03-quickstart-cloudrun.md -------------------------------------------------------------------------------- /docs/quickstarts/assets/helloworld-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/quickstarts/assets/helloworld-browser.png -------------------------------------------------------------------------------- /docs/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/docs/release_process.md -------------------------------------------------------------------------------- /examples/fullstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/README.md -------------------------------------------------------------------------------- /examples/fullstack/backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/.dockerignore -------------------------------------------------------------------------------- /examples/fullstack/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/.gitignore -------------------------------------------------------------------------------- /examples/fullstack/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/Dockerfile -------------------------------------------------------------------------------- /examples/fullstack/backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/Makefile -------------------------------------------------------------------------------- /examples/fullstack/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/README.md -------------------------------------------------------------------------------- /examples/fullstack/backend/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/bin/server.dart -------------------------------------------------------------------------------- /examples/fullstack/backend/lib/api_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/lib/api_types.dart -------------------------------------------------------------------------------- /examples/fullstack/backend/lib/api_types.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/lib/api_types.g.dart -------------------------------------------------------------------------------- /examples/fullstack/backend/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/lib/functions.dart -------------------------------------------------------------------------------- /examples/fullstack/backend/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/fullstack/backend/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/pubspec.yaml -------------------------------------------------------------------------------- /examples/fullstack/backend/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/backend/test/function_test.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/.gitignore -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/README.md -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/bin/greet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/bin/greet.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/lib/api_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/lib/api_types.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/lib/api_types.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/lib/api_types.g.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/fullstack/frontend-cli/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend-cli/pubspec.yaml -------------------------------------------------------------------------------- /examples/fullstack/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/.gitignore -------------------------------------------------------------------------------- /examples/fullstack/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/README.md -------------------------------------------------------------------------------- /examples/fullstack/frontend/assets/config/dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "greetingUrl": "http://localhost:8080" 3 | } 4 | -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/config.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/main.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/models/app_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/models/app_model.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/services/api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/services/api.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/services/api_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/services/api_types.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/services/api_types.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/services/api_types.g.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/views/greeting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/views/greeting.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/views/history_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/views/history_page.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/lib/views/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/lib/views/home_page.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/CMakeLists.txt -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/main.cc -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/my_application.cc -------------------------------------------------------------------------------- /examples/fullstack/frontend/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/linux/my_application.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/.gitignore -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Info.plist -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /examples/fullstack/frontend/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /examples/fullstack/frontend/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/fullstack/frontend/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/pubspec.yaml -------------------------------------------------------------------------------- /examples/fullstack/frontend/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/test/widget_test.dart -------------------------------------------------------------------------------- /examples/fullstack/frontend/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/web/favicon.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/web/icons/Icon-192.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/web/icons/Icon-512.png -------------------------------------------------------------------------------- /examples/fullstack/frontend/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/web/index.html -------------------------------------------------------------------------------- /examples/fullstack/frontend/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/web/manifest.json -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/.gitignore -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/CMakeLists.txt -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/Runner.rc -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/main.cpp -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/resource.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/run_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/run_loop.cpp -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/run_loop.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/utils.cpp -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/utils.h -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /examples/fullstack/frontend/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/frontend/windows/runner/win32_window.h -------------------------------------------------------------------------------- /examples/fullstack/images/flutter_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/fullstack/images/flutter_demo.png -------------------------------------------------------------------------------- /examples/hello/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/.dockerignore -------------------------------------------------------------------------------- /examples/hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/.gitignore -------------------------------------------------------------------------------- /examples/hello/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/Dockerfile -------------------------------------------------------------------------------- /examples/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/Makefile -------------------------------------------------------------------------------- /examples/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/README.md -------------------------------------------------------------------------------- /examples/hello/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/bin/server.dart -------------------------------------------------------------------------------- /examples/hello/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/lib/functions.dart -------------------------------------------------------------------------------- /examples/hello/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/hello/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/pubspec.yaml -------------------------------------------------------------------------------- /examples/hello/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/hello/test/function_test.dart -------------------------------------------------------------------------------- /examples/json/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/.dockerignore -------------------------------------------------------------------------------- /examples/json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/.gitignore -------------------------------------------------------------------------------- /examples/json/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/Dockerfile -------------------------------------------------------------------------------- /examples/json/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/Makefile -------------------------------------------------------------------------------- /examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/README.md -------------------------------------------------------------------------------- /examples/json/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/bin/server.dart -------------------------------------------------------------------------------- /examples/json/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/lib/functions.dart -------------------------------------------------------------------------------- /examples/json/lib/functions.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/lib/functions.g.dart -------------------------------------------------------------------------------- /examples/json/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/json/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/pubspec.yaml -------------------------------------------------------------------------------- /examples/json/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/json/test/function_test.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/.dockerignore -------------------------------------------------------------------------------- /examples/protobuf_firestore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/.gitignore -------------------------------------------------------------------------------- /examples/protobuf_firestore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/Dockerfile -------------------------------------------------------------------------------- /examples/protobuf_firestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/README.md -------------------------------------------------------------------------------- /examples/protobuf_firestore/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/bin/server.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/functions.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/function_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/function_types.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/analysis_options.yaml -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pb.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbenum.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbjson.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/data.pbserver.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pb.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbenum.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbjson.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/events/cloud/firestore/v1/events.pbserver.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/struct.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/struct.pb.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/struct.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/struct.pbenum.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/struct.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/struct.pbjson.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/struct.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/struct.pbserver.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pb.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbenum.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbjson.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/protobuf/timestamp.pbserver.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/type/latlng.pb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/type/latlng.pb.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/type/latlng.pbenum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/type/latlng.pbenum.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/type/latlng.pbjson.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/type/latlng.pbjson.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/lib/src/google/type/latlng.pbserver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/lib/src/google/type/latlng.pbserver.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/protobuf_firestore/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/pubspec.yaml -------------------------------------------------------------------------------- /examples/protobuf_firestore/sample/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/sample/data.json -------------------------------------------------------------------------------- /examples/protobuf_firestore/test/decode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/test/decode_test.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/test/function_test.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/test/src/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/test/src/test_utils.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/test/test_shared.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/test/test_shared.dart -------------------------------------------------------------------------------- /examples/protobuf_firestore/tool/regenerate_protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/protobuf_firestore/tool/regenerate_protos.sh -------------------------------------------------------------------------------- /examples/raw_cloudevent/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/.dockerignore -------------------------------------------------------------------------------- /examples/raw_cloudevent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/.gitignore -------------------------------------------------------------------------------- /examples/raw_cloudevent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/Dockerfile -------------------------------------------------------------------------------- /examples/raw_cloudevent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/README.md -------------------------------------------------------------------------------- /examples/raw_cloudevent/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/bin/server.dart -------------------------------------------------------------------------------- /examples/raw_cloudevent/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/lib/functions.dart -------------------------------------------------------------------------------- /examples/raw_cloudevent/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/mono_pkg.yaml -------------------------------------------------------------------------------- /examples/raw_cloudevent/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/pubspec.yaml -------------------------------------------------------------------------------- /examples/raw_cloudevent/sample/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/sample/data.json -------------------------------------------------------------------------------- /examples/raw_cloudevent/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/test/function_test.dart -------------------------------------------------------------------------------- /examples/raw_cloudevent/test/src/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/test/src/test_utils.dart -------------------------------------------------------------------------------- /examples/raw_cloudevent/tool/binary_mode_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/tool/binary_mode_request.dart -------------------------------------------------------------------------------- /examples/raw_cloudevent/tool/structured_mode_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/examples/raw_cloudevent/tool/structured_mode_request.dart -------------------------------------------------------------------------------- /functions_framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/.gitignore -------------------------------------------------------------------------------- /functions_framework/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/CHANGELOG.md -------------------------------------------------------------------------------- /functions_framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/LICENSE -------------------------------------------------------------------------------- /functions_framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/README.md -------------------------------------------------------------------------------- /functions_framework/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/build.yaml -------------------------------------------------------------------------------- /functions_framework/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/dart_test.yaml -------------------------------------------------------------------------------- /functions_framework/example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/example/readme.md -------------------------------------------------------------------------------- /functions_framework/lib/functions_framework.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/functions_framework.dart -------------------------------------------------------------------------------- /functions_framework/lib/serve.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/serve.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/cloud_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/cloud_event.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/cloud_event.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/cloud_event.g.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/cloud_function.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/cloud_function.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/function_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/function_config.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/function_target.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/function_target.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/json_request_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/json_request_utils.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/request_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/request_context.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/run.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/run.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/targets/cloud_event_targets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/targets/cloud_event_targets.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/targets/http_targets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/targets/http_targets.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/targets/json_targets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/targets/json_targets.dart -------------------------------------------------------------------------------- /functions_framework/lib/src/typedefs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/lib/src/typedefs.dart -------------------------------------------------------------------------------- /functions_framework/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/mono_pkg.yaml -------------------------------------------------------------------------------- /functions_framework/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/pubspec.yaml -------------------------------------------------------------------------------- /functions_framework/test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework/test/ensure_build_test.dart -------------------------------------------------------------------------------- /functions_framework_builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/.gitignore -------------------------------------------------------------------------------- /functions_framework_builder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/CHANGELOG.md -------------------------------------------------------------------------------- /functions_framework_builder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/LICENSE -------------------------------------------------------------------------------- /functions_framework_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/README.md -------------------------------------------------------------------------------- /functions_framework_builder/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/analysis_options.yaml -------------------------------------------------------------------------------- /functions_framework_builder/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/build.yaml -------------------------------------------------------------------------------- /functions_framework_builder/lib/builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/builder.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/analyzer_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/analyzer_utils.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/constants.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/function_type_validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/function_type_validator.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/generic_function_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/generic_function_type.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/supported_function_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/supported_function_type.dart -------------------------------------------------------------------------------- /functions_framework_builder/lib/src/valid_json_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/lib/src/valid_json_utils.dart -------------------------------------------------------------------------------- /functions_framework_builder/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/mono_pkg.yaml -------------------------------------------------------------------------------- /functions_framework_builder/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/pubspec.yaml -------------------------------------------------------------------------------- /functions_framework_builder/test/builder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/builder_test.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/complex_target_name_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/complex_target_name_handlers.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/freezed_style_json_mixin_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/freezed_style_json_mixin_handler.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/valid_cloud_event_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/valid_cloud_event_handlers.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/valid_custom_type_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/valid_custom_type_handlers.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/valid_json_type_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/valid_json_type_handlers.dart -------------------------------------------------------------------------------- /functions_framework_builder/test/test_examples/valid_shelf_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/functions_framework_builder/test/test_examples/valid_shelf_handlers.dart -------------------------------------------------------------------------------- /google_cloud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/.gitignore -------------------------------------------------------------------------------- /google_cloud/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/CHANGELOG.md -------------------------------------------------------------------------------- /google_cloud/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/Dockerfile -------------------------------------------------------------------------------- /google_cloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/LICENSE -------------------------------------------------------------------------------- /google_cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/README.md -------------------------------------------------------------------------------- /google_cloud/example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/example/example.dart -------------------------------------------------------------------------------- /google_cloud/lib/google_cloud.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/google_cloud.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/bad_configuration_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/bad_configuration_exception.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/bad_request_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/bad_request_exception.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/constants.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/gcp_project.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/gcp_project.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/log_severity.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/log_severity.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/logging.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/serve.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/serve.dart -------------------------------------------------------------------------------- /google_cloud/lib/src/terminate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/lib/src/terminate.dart -------------------------------------------------------------------------------- /google_cloud/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/mono_pkg.yaml -------------------------------------------------------------------------------- /google_cloud/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/pubspec.yaml -------------------------------------------------------------------------------- /google_cloud/test/gcp_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/test/gcp_test.dart -------------------------------------------------------------------------------- /google_cloud/test/src/listen_port_print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/test/src/listen_port_print.dart -------------------------------------------------------------------------------- /google_cloud/test/src/project_id_print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/test/src/project_id_print.dart -------------------------------------------------------------------------------- /google_cloud/test/src/terminate_print.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/test/src/terminate_print.dart -------------------------------------------------------------------------------- /google_cloud/tool/docker_test_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/tool/docker_test_script.sh -------------------------------------------------------------------------------- /google_cloud/tool/fix_pubspec.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/google_cloud/tool/fix_pubspec.dart -------------------------------------------------------------------------------- /integration_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/.gitignore -------------------------------------------------------------------------------- /integration_test/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/bin/server.dart -------------------------------------------------------------------------------- /integration_test/dart_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/dart_test.yaml -------------------------------------------------------------------------------- /integration_test/lib/functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/functions.dart -------------------------------------------------------------------------------- /integration_test/lib/src/conformance_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/src/conformance_handlers.dart -------------------------------------------------------------------------------- /integration_test/lib/src/json_handlers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/src/json_handlers.dart -------------------------------------------------------------------------------- /integration_test/lib/src/pub_sub_types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/src/pub_sub_types.dart -------------------------------------------------------------------------------- /integration_test/lib/src/pub_sub_types.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/src/pub_sub_types.g.dart -------------------------------------------------------------------------------- /integration_test/lib/src/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/lib/src/utils.dart -------------------------------------------------------------------------------- /integration_test/mono_pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/mono_pkg.yaml -------------------------------------------------------------------------------- /integration_test/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/pubspec.yaml -------------------------------------------------------------------------------- /integration_test/test/cli_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/cli_test.dart -------------------------------------------------------------------------------- /integration_test/test/cloud_behavior_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/cloud_behavior_test.dart -------------------------------------------------------------------------------- /integration_test/test/cloud_event_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/cloud_event_test.dart -------------------------------------------------------------------------------- /integration_test/test/custom_type_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/custom_type_test.dart -------------------------------------------------------------------------------- /integration_test/test/ensure_build_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/ensure_build_test.dart -------------------------------------------------------------------------------- /integration_test/test/function_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/function_test.dart -------------------------------------------------------------------------------- /integration_test/test/logging_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/logging_test.dart -------------------------------------------------------------------------------- /integration_test/test/src/test_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/integration_test/test/src/test_utils.dart -------------------------------------------------------------------------------- /mono_repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/mono_repo.yaml -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /tool/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/tool/ci.sh -------------------------------------------------------------------------------- /tool/pub_upgrade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/functions-framework-dart/HEAD/tool/pub_upgrade.dart --------------------------------------------------------------------------------