UNPKG

@liara/cli

Version:

The command line interface for Liara

24 lines (23 loc) 456 B
export function getPort(platform) { const ports = { static: 80, python: 80, react: 80, vue: 80, angular: 80, laravel: 80, wordpress: 80, django: 80, flask: 80, php: 80, next: 3000, }; return ports[platform]; } export function getDefaultPort(platform) { const ports = { dotnet: 80, go: 8080, }; return ports[platform] || 3000; }