This commit is contained in:
Rakarake 2026-03-28 21:00:43 +01:00
parent ac5cba1c4d
commit 225d0f4b25
2 changed files with 8 additions and 0 deletions

View file

@ -25,6 +25,7 @@
rust-analyzer rust-analyzer
gcc gcc
zig-overlay.packages."x86_64-linux".master zig-overlay.packages."x86_64-linux".master
curl
]; ];
buildInputs = with pkgs; [ buildInputs = with pkgs; [
libdisplay-info libdisplay-info

7
push.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
for file in $(find public -type f)
do
echo "uploading: $file"
curl -X PUT --data @$file -u "Rakarake:h7us3lTlFWVaRTKq16" https://mdf.farm/api/$file
done