tree: d3ec0f3f02e451a788d2ba741789457120275b30
  1. bin/
  2. lib/
  3. test/
  4. .dockerignore
  5. analysis_options.yaml
  6. app.yaml
  7. Dockerfile
  8. LICENSE
  9. pubspec.lock
  10. pubspec.yaml
  11. README.md
appengine/README.md

App Engine Deployment

This directory contains the configuration and source code for the dart_ci/appengine App Engine service. The application runs in the App Engine Flexible Environment using a custom runtime (Docker).

Deployment

To deploy the application, run:

gcloud app deploy

Verification

Once deployed, verify the application is running:

gcloud app browse

Local Development

To run the application locally using Docker:

  1. Build the image:

    docker build -t dart-ci-app .
    
  2. Run the container:

    docker run -it -p 8080:8080 --env PORT=8080 dart-ci-app
    
  3. Access the app at http://localhost:8080.