This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! {"lang":"module"} | |
/* | |
TODO: | |
- Add per-app downtime | |
- Add global and per-app time limits | |
- Prevent blocked apps from being installed via the marketplace | |
- Add a whitelist-based alternative | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ -z "$GEMINI_API_TOKEN" ]]; then | |
echo "Error: GEMINI_API_TOKEN env variable is missing" | |
exit 1 | |
fi | |
SAFE_MODE=false | |
if [[ "${@: -1}" == "--safe" ]]; then |