Skip to content

Instantly share code, notes, and snippets.

@calvindur
calvindur / install my stack.sh
Last active April 9, 2026 09:50
install my stack
#!/bin/bash
# Redirect stdin to the terminal so interactive CLIs can talk to you
exec < /dev/tty
create_svelte_stack() {
local APP_NAME=$1
if [ -z "$APP_NAME" ]; then
read -p "◆ Enter your project name: " APP_NAME