Created
January 8, 2024 21:56
-
-
Save johnlindquist/ea858d18c4958831e1a804572a3abb92 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Name: Testing Servers | |
import "@johnlindquist/kit" | |
let servers = [ | |
{ | |
name: "Byte Bistro", | |
description: "This is the first server", | |
value: "server1", | |
}, | |
{ | |
name: "Cache Cabana", | |
description: "Secondary operations server", | |
value: "server2", | |
}, | |
{ | |
name: "Analytics Arcade", | |
description: "Server for analytics", | |
value: "server3", | |
}, | |
{ | |
name: "Dev Dungeon", | |
description: "Development environment server", | |
value: "server4", | |
}, | |
{ | |
name: "Staging Saloon", | |
description: "Staging server for pre-production", | |
value: "server5", | |
}, | |
{ | |
name: "Production Palace", | |
description: "Production server", | |
value: "server6", | |
}, | |
{ | |
name: "Backup Bunker", | |
description: "Backup and recovery server", | |
value: "server7", | |
}, | |
{ | |
name: "Load Lagoon", | |
description: "Load testing server", | |
value: "server8", | |
}, | |
{ | |
name: "Legacy Loft", | |
description: "Legacy systems server", | |
value: "server9", | |
}, | |
{ | |
name: "Feature Factory", | |
description: "Experimental features server", | |
value: "server10", | |
}, | |
{ | |
name: "Support Shack", | |
description: "Customer support server", | |
value: "server11", | |
}, | |
] | |
await arg("Pick a server", servers) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment