A decent-looking base website for future projects, based on VVVST-NET stack VVVVST-NET stands for "Vue Vite Vuex Vue-Router Sass Typescript" (for the frontend) - "Node Express Typescript" (for the backend)
git clone <repo>
cd frontend/
npm install
cd ../backend/
npm install
# For development
cd frontend/;
npm run dev &
cd ../backend;
npm run dev
# To build for production
cd frontend/
npm run build
cd ../backend/
npm run build