Spaces:
Running
on
Zero
Running
on
Zero
File size: 229 Bytes
a746d34 |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Load environment variables
export $(cat .env | xargs)
# Run the lambda function with the event.json file
python lambda_function.py lambda_handler event.json
|