Add initial project setup with Vite, Mantine, and Docker configuration
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Actualiza los repositorios y asegura que curl esté instalado
|
||||
apt-get update
|
||||
apt-get install -y curl
|
||||
|
||||
# Verifica las versiones instaladas
|
||||
echo "Node.js version:"
|
||||
node -v
|
||||
echo "npm version:"
|
||||
npm -v
|
||||
|
||||
# Crea un directorio para el proyecto
|
||||
mkdir "frontend"
|
||||
cd "frontend"
|
||||
|
||||
# Inicializa un nuevo proyecto React
|
||||
npx create-react-app .
|
||||
|
||||
# Instala Material-UI y sus dependencias
|
||||
npm install @mui/material @emotion/react @emotion/styled
|
||||
|
||||
# Inicia el servidor de desarrollo
|
||||
npm start
|
||||
Reference in New Issue
Block a user