first commit

This commit is contained in:
Gianluca Brigandi
2025-05-07 11:16:24 -07:00
commit ce2460928a
22 changed files with 2163 additions and 0 deletions

10
run.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ ! -f .env ]; then
echo "No .env file found. Creating from .env.example..."
cp .env.example .env
echo "Please edit .env file with your configuration."
exit 1
fi
cargo run