---
id: historical-install
title: Instalación inicial histórica
category: operations
version: 1.0
status: historical
updated_at: 2026-07-14
---

# ESP Platform Installation

ESP Platform runs directly inside VM `675 esp-platform`.

Runtime baseline:

- Debian 12 Bookworm.
- PostgreSQL 15 native.
- Nginx native on port 88.
- Spring Boot backend managed by systemd.
- Firmware binaries stored in `/srv/esp-platform/firmware`.
- Firmware metadata stored in PostgreSQL database `esp_platform`.

Build and install backend:

```bash
cd /opt/esp-platform/repo/backend/esp-platform-backend
mvn -DskipTests package
sudo install -o esp-platform -g esp-platform -m 0755 target/esp-platform-backend-0.1.0-SNAPSHOT.jar /opt/esp-platform/app/esp-platform-backend.jar
sudo systemctl restart esp-platform-backend
```
