This commit is contained in:
Gabriel Peron 2025-03-23 03:01:57 +01:00
parent c081c62b65
commit 14d5716ca5
5 changed files with 38 additions and 6 deletions

2
.env
View file

@ -3,4 +3,4 @@ DB_USER=prox
DB_PASSWORD=2104 DB_PASSWORD=2104
DB_NAME=prox DB_NAME=prox
PORT=3006 PORT=3006
VITE_API_URL=http://localhost:3006/api VITE_API_URL=/api

View file

@ -8,7 +8,8 @@
"build": "vite build", "build": "vite build",
"lint": "eslint .", "lint": "eslint .",
"preview": "vite preview", "preview": "vite preview",
"server": "node server/index.js" "server": "node server/index.js",
"start": "node server/index.js"
}, },
"dependencies": { "dependencies": {
"axios": "^1.6.7", "axios": "^1.6.7",

View file

@ -2,13 +2,23 @@ import express from 'express';
import cors from 'cors'; import cors from 'cors';
import mysql from 'mysql2/promise'; import mysql from 'mysql2/promise';
import dotenv from 'dotenv'; import dotenv from 'dotenv';
import path from 'path';
import { fileURLToPath } from 'url';
import { webcrypto } from 'crypto';
dotenv.config(); dotenv.config();
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const crypto = webcrypto;
const app = express(); const app = express();
app.use(cors()); app.use(cors());
app.use(express.json()); app.use(express.json());
// Serve static files from the dist directory
app.use(express.static(path.join(__dirname, '../dist')));
const pool = mysql.createPool({ const pool = mysql.createPool({
host: process.env.DB_HOST, host: process.env.DB_HOST,
user: process.env.DB_USER, user: process.env.DB_USER,
@ -27,6 +37,11 @@ pool.getConnection()
}) })
.catch(error => { .catch(error => {
console.error('Error connecting to the database:', error); console.error('Error connecting to the database:', error);
console.error('Connection details:', {
host: process.env.DB_HOST,
user: process.env.DB_USER,
database: process.env.DB_NAME
});
process.exit(1); process.exit(1);
}); });
@ -79,6 +94,11 @@ app.delete('/api/servers/:id', async (req, res) => {
} }
}); });
// Serve index.html for all other routes (SPA support)
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../dist/index.html'));
});
const PORT = process.env.PORT || 3000; const PORT = process.env.PORT || 3000;
app.listen(PORT, () => { app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`); console.log(`Server running on port ${PORT}`);

View file

@ -1,6 +1,6 @@
-- Create the database if it doesn't exist -- Create the database if it doesn't exist
CREATE DATABASE IF NOT EXISTS prox; CREATE DATABASE IF NOT EXISTS proxmox_dashboard;
USE prox; USE proxmox_dashboard;
-- Create servers table -- Create servers table
CREATE TABLE IF NOT EXISTS servers ( CREATE TABLE IF NOT EXISTS servers (
@ -18,9 +18,12 @@ CREATE TABLE IF NOT EXISTS servers (
INDEX idx_name (name) INDEX idx_name (name)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Create a user for the application (if not exists)
CREATE USER IF NOT EXISTS 'proxmox_user'@'localhost' IDENTIFIED BY 'proxmox_password';
-- Grant privileges to the application user -- Grant privileges to the application user
GRANT ALL PRIVILEGES ON proxmox_dashboard.* TO 'proxmox_user'@'localhost';
FLUSH PRIVILEGES;
-- Add some sample data (optional) -- Add some sample data (optional)
INSERT INTO servers ( INSERT INTO servers (

View file

@ -7,4 +7,12 @@ export default defineConfig({
optimizeDeps: { optimizeDeps: {
exclude: ['lucide-react'], exclude: ['lucide-react'],
}, },
}); server: {
proxy: {
'/api': {
target: 'http://localhost:3006',
changeOrigin: true,
},
},
},
});