# Copy this file to .env and set the absolute path to the folder on your # desktop where your projects (and their STL/3MF files) should live. # # Linux/macOS example: # PROJECTS_DIR=/home/yourname/3d-projects # # Windows (Docker Desktop) example: # PROJECTS_DIR=C:/Users/yourname/3d-projects PROJECTS_DIR=/home/yourname/3d-projects # SHA256 hash of the login password. Generate it with (no quotes around the # password, mind trailing newlines/spaces): # # Linux/macOS: # echo -n "meinPasswort" | sha256sum # # Windows (PowerShell): # $hash = [System.Security.Cryptography.SHA256]::Create().ComputeHash([System.Text.Encoding]::UTF8.GetBytes("meinPasswort")) # ($hash | ForEach-Object { $_.ToString("x2") }) -join "" # # Paste only the resulting hex hash below, e.g.: # PASSWORD_SHA256=5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d PASSWORD_SHA256=changeme