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).
To deploy the application, run:
gcloud app deploy
Once deployed, verify the application is running:
gcloud app browse
To run the application locally using Docker:
Build the image:
docker build -t dart-ci-app .
Run the container:
docker run -it -p 8080:8080 --env PORT=8080 dart-ci-app
Access the app at http://localhost:8080.