Skip to content

Instantly share code, notes, and snippets.

View Boostem's full-sized avatar
🍺
--. --- ...- --- .-.. ...

Hudson Boostem

🍺
--. --- ...- --- .-.. ...
View GitHub Profile
@Boostem
Boostem / gist:f3090a410dcb6a6a00de26255b5ec017
Created May 15, 2025 18:52
Quick cleanup frontend commands
cd ..
mv frontend/src frontend_src_backup
mv frontend/index.html frontend_index_backup
rm -rf frontend
npm create vite@latest frontend -- --template react-ts
cd frontend
npm install
npm install @reduxjs/toolkit framer-motion shadcn-ui
@Boostem
Boostem / setup-dev-env.sh
Last active May 4, 2025 16:16
Ubuntu Dev Setup Script
#!/bin/bash
set -e
HOME_DIR="/home/boostem"
# Update
apt update && apt upgrade -y
# System tools
apt install -y \