Skip to main content

πŸ“₯ Installation

Dashium Installation

Linux​

To install Dashium on Linux, follow these steps:

Prerequisites​

Ensure the following software is installed on your system:

Using Docker Compose​

  1. Clone the Dashium Docker repository:

    git clone https://github.com/Dashium/Dashium_Docker
    cd Dashium_Docker
  2. Run Docker Compose to start the containers in the background:

    docker-compose up -d

Using Docker without Docker Compose​

  1. Create a Docker volume for data:

    docker volume create dashium_data
  2. Launch the server container for the web interface:

    docker run -d --name dashium_server --network dashium_network -p 8000:3000 dashium
  3. Launch the API container:

    docker run -d --name dashium_api --network dashium_network -p 8080:8080 dashium

Manual Installation (Optional)​

If you prefer a more complex installation, follow these steps:

  1. Clone the Dashium Dashboard repository:

    git clone https://github.com/Dashium/Dashboard
    cd Dashboard
    npm install
    npm run build
    npm start
  2. Clone the Dashium API repository:

    git clone https://github.com/Dashium/API
    cd API
    npm install
    npm start

Windows​

To install Dashium on Windows, follow these steps:

Prerequisites​

Ensure the following software is installed on your system:

Installation Procedure​

Follow the same procedure as for the Linux installation, adapting the commands for your Windows environment.