├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── elixir ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app.yaml ├── config │ └── config.exs ├── lib │ ├── my_app.ex │ └── my_app │ │ └── router.ex └── mix.exs ├── nginx ├── Dockerfile ├── README.md ├── app.yaml ├── nginx.conf └── www │ └── index.html ├── perl ├── Dockerfile ├── README.md ├── app.yaml └── main.pl ├── ruby ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.rb ├── app.yaml ├── config.ru └── test.rb └── swift ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Package.swift ├── README.md ├── Sources └── main.swift └── app.yaml /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/README.md -------------------------------------------------------------------------------- /elixir/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/.dockerignore -------------------------------------------------------------------------------- /elixir/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/.gitignore -------------------------------------------------------------------------------- /elixir/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/Dockerfile -------------------------------------------------------------------------------- /elixir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/README.md -------------------------------------------------------------------------------- /elixir/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | -------------------------------------------------------------------------------- /elixir/config/config.exs: -------------------------------------------------------------------------------- 1 | use Mix.Config 2 | -------------------------------------------------------------------------------- /elixir/lib/my_app.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/lib/my_app.ex -------------------------------------------------------------------------------- /elixir/lib/my_app/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/lib/my_app/router.ex -------------------------------------------------------------------------------- /elixir/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/elixir/mix.exs -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/nginx/www/index.html -------------------------------------------------------------------------------- /perl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/perl/Dockerfile -------------------------------------------------------------------------------- /perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/perl/README.md -------------------------------------------------------------------------------- /perl/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | -------------------------------------------------------------------------------- /perl/main.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/perl/main.pl -------------------------------------------------------------------------------- /ruby/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .bundle 3 | -------------------------------------------------------------------------------- /ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/.gitignore -------------------------------------------------------------------------------- /ruby/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/Dockerfile -------------------------------------------------------------------------------- /ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/Gemfile -------------------------------------------------------------------------------- /ruby/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/Gemfile.lock -------------------------------------------------------------------------------- /ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/README.md -------------------------------------------------------------------------------- /ruby/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/app.rb -------------------------------------------------------------------------------- /ruby/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | -------------------------------------------------------------------------------- /ruby/config.ru: -------------------------------------------------------------------------------- 1 | require_relative "app" 2 | 3 | run Sinatra::Application 4 | -------------------------------------------------------------------------------- /ruby/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/ruby/test.rb -------------------------------------------------------------------------------- /swift/.dockerignore: -------------------------------------------------------------------------------- 1 | /.build 2 | /Packages 3 | -------------------------------------------------------------------------------- /swift/.gitignore: -------------------------------------------------------------------------------- 1 | /.build 2 | /Packages 3 | -------------------------------------------------------------------------------- /swift/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/swift/Dockerfile -------------------------------------------------------------------------------- /swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/swift/Package.swift -------------------------------------------------------------------------------- /swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/swift/README.md -------------------------------------------------------------------------------- /swift/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/appengine-custom-runtimes-samples/HEAD/swift/Sources/main.swift -------------------------------------------------------------------------------- /swift/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: custom 2 | env: flex 3 | --------------------------------------------------------------------------------