Feature: user upload artwork

This commit is contained in:
2025-10-25 02:22:39 -04:00
parent 28d0443f44
commit deb163bd70
23 changed files with 1288 additions and 177 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
USERNAME="alexzinn"
PASSWORD="al3110e"
EMAIL="zinntechniker@gmail.com"
curl --verbose \
--request POST \
-H "x-secret: al3110e" \
-H "Content-Type: application/json" \
http://localhost:3000/api/users \
-d "{
\"username\": \"${USERNAME}\",
\"password\": \"${PASSWORD}\",
\"email\": \"${EMAIL}\"
}"