Spaces:
Running
Running
echo "π§ Installing Deno for PyodideSandbox..." | |
# Install Deno | |
curl -fsSL https://deno.land/install.sh | sh | |
# Add Deno to PATH for the current session | |
export DENO_INSTALL="/home/user/.deno" | |
export PATH="$DENO_INSTALL/bin:$PATH" | |
# Verify installation | |
echo "β Deno installed at: $(which deno)" | |
echo "β Deno version: $(deno --version)" | |
echo "π Starting Python application..." | |
python app.py |