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
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 |
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
#!/bin/bash | |
set -e | |
HOME_DIR="/home/boostem" | |
# Update | |
apt update && apt upgrade -y | |
# System tools | |
apt install -y \ |