Skip to content

qcom-toolbox/Specs-Server

Repository files navigation

Java FreeBSD GhostBSD Linux macOS Windows Arch Linux Debian Fedora Gentoo


Specs Server

  • Specs Server allows you to make a web server that allows you to use the validation function of the Specs application.
    img.png

How to install it :

  • Go to you server folder and Clone the repository
git clone https://github.com/enzo-quirici/Specs/tree/master  
  • Set up a MYSQL server and add this
CREATE TABLE system_specs (
    id           INT AUTO_INCREMENT PRIMARY KEY,
    os           VARCHAR(100),
    version      VARCHAR(50),
    cpu          VARCHAR(100),
    cores        INT,
    threads      INT,
    gpu          VARCHAR(100),
    vram         INT,
    ram          INT,
    owner        VARCHAR(100),
    denomination VARCHAR(100),
    device       VARCHAR(50),
    timestamp    DATETIME DEFAULT CURRENT_TIMESTAMP
);

open the file "database.php" and change the information needed for the database.

E.G :

// Database parameters
$host = 'localhost';     // Database host
$db = 'specs';           // Database name
$user = 'root';          // Database user
$pass = '';              // Password
$port = 3306;            // Custom MySQL port

Utilisation :

About

The server side of the Specs app.

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Packages

 
 
 

Contributors