Skip to content

Files

Latest commit

author
Jon Wayne Parrott
Mar 14, 2017
3df0748 · Mar 14, 2017

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Oct 13, 2016
Mar 14, 2017
Nov 10, 2016
Oct 13, 2016

Perl Custom Runtime for App Engine

Simple guide to running Mojolicious on Google App Engine.

  1. Create a new Mojolicious app.

  2. Create an app.yaml in the root of your application with the following contents:

    runtime: custom
    env: flex
  3. Create a Dockerfile in the root of your application.

  4. Create a project in the Google Developers Console.

  5. Make sure you have the Google Cloud SDK installed. When you're ready, initialize it:

    $ gcloud init
  6. Deploy your app:

    gcloud app deploy

You are now running Perl on Google App Engine. How cool is that?