Initial WallMuse project

This commit is contained in:
fenglee
2026-05-09 09:12:41 +00:00
commit 3ea7d29827
91 changed files with 13136 additions and 0 deletions

16
infra/minio/create-buckets.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
set -eu
mc alias set wallmuse http://minio:9000 "$MINIO_ROOT_USER" "$MINIO_ROOT_PASSWORD"
for bucket in \
"$S3_BUCKET_ORIGINALS" \
"$S3_BUCKET_PREVIEWS" \
"$S3_BUCKET_DOWNLOADS" \
"$S3_BUCKET_REFERENCES" \
"$S3_BUCKET_TEMP"
do
mc mb --ignore-existing "wallmuse/$bucket"
done
mc ls wallmuse