working
This commit is contained in:
parent
6a295e900e
commit
c081c62b65
2 changed files with 4 additions and 7 deletions
2
.env
2
.env
|
@ -1,6 +1,6 @@
|
||||||
DB_HOST=172.10.1.4
|
DB_HOST=172.10.1.4
|
||||||
DB_USER=prox
|
DB_USER=prox
|
||||||
DB_PASSWORD=2104
|
DB_PASSWORD=2104
|
||||||
DB_NAME=2104
|
DB_NAME=prox
|
||||||
PORT=3006
|
PORT=3006
|
||||||
VITE_API_URL=http://localhost:3006/api
|
VITE_API_URL=http://localhost:3006/api
|
|
@ -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 proxmox_dashboard;
|
CREATE DATABASE IF NOT EXISTS prox;
|
||||||
USE proxmox_dashboard;
|
USE prox;
|
||||||
|
|
||||||
-- Create servers table
|
-- Create servers table
|
||||||
CREATE TABLE IF NOT EXISTS servers (
|
CREATE TABLE IF NOT EXISTS servers (
|
||||||
|
@ -18,12 +18,9 @@ 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 (
|
||||||
|
|
Loading…
Reference in a new issue