deploying-to-globe

Installation
SKILL.md

Globe Deployment Skill

Globe is a serverless deployment platform for Dart and Flutter applications. Apps compile to x86_64 native executables and deploy to 300+ edge locations with automatic scaling.

Critical Requirements

All Globe server apps MUST:

  1. Listen on PORT environment variable (not hardcoded):
final port = int.parse(Platform.environment['PORT'] ?? '8080');
  1. Be stateless — no local file persistence between requests

  2. Compile FFI to x86_64 if using native code

CLI Quick Reference

Installs
3
GitHub Stars
3
First Seen
Feb 12, 2026
deploying-to-globe — invertase/agent-skills