Developer Workstation Platform

Consistent developer machines.
One command. Every engineer.

DWIIS provisions Ubuntu LTS workstations with the right tools, Docker-backed databases, security defaults, and profile-based installs — then keeps them compliant over time.

curl -fsSL https://dwiis.dedusoft.com/install.sh \
  | bash -s -- --profile backend

Idempotent & resumable

Safe to re-run after failures. Checkpoint state survives reboots and network outages.

Profile-based toolsets

Install only what each team needs: frontend, backend, devops, full, or minimal.

Docker-first databases

PostgreSQL, MySQL, MongoDB, and Redis run in containers with CLI wrappers on PATH.

Audit & verify

Built-in drift detection and verification reports for every workstation.

Profiles

minimal frontend backend devops full
dwiis install --profile devops
dwiis verify
dwiis audit --remediate
dwiis self-update

Secure bootstrap (recommended)

curl -fsSL https://dwiis.dedusoft.com/install.sh -o install.sh
curl -fsSL https://dwiis.dedusoft.com/install.sh.sha256 -o install.sh.sha256
sha256sum -c install.sh.sha256 && bash install.sh