A Web App for learning American Sign Language made with React and Flask
This repository uses gitleaks for automatic secret scanning on every commit.
A pre-commit hook is configured to scan for secrets before each commit. This helps prevent accidentally committing sensitive information like:
- API keys
- Passwords
- Tokens
- Private keys
To enable the pre-commit hook locally:
# Install pre-commit
pip install pre-commit
# Install hooks
pre-commit installIn case of emergency, you can bypass the hook:
git commit --no-verify -m "emergency commit"
⚠️ Only use--no-verifyin emergency situations. Regular commits should always be scanned.