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:
- Listen on
PORTenvironment variable (not hardcoded):
final port = int.parse(Platform.environment['PORT'] ?? '8080');
-
Be stateless — no local file persistence between requests
-
Compile FFI to x86_64 if using native code