π₯ 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β
-
Clone the Dashium Docker repository:
git clone https://github.com/Dashium/Dashium_Docker
cd Dashium_Docker -
Run Docker Compose to start the containers in the background:
docker-compose up -d
Using Docker without Docker Composeβ
-
Create a Docker volume for data:
docker volume create dashium_data -
Launch the server container for the web interface:
docker run -d --name dashium_server --network dashium_network -p 8000:3000 dashium -
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:
-
Clone the Dashium Dashboard repository:
git clone https://github.com/Dashium/Dashboard
cd Dashboard
npm install
npm run build
npm start -
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.