https://github.com/raynou/stormwind
Tools for facial analysis using AWS Rekognition
https://github.com/raynou/stormwind
Last synced: about 2 months ago
JSON representation
Tools for facial analysis using AWS Rekognition
- Host: GitHub
- URL: https://github.com/raynou/stormwind
- Owner: Raynou
- Created: 2023-10-23T02:49:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-15T18:36:08.000Z (10 months ago)
- Last Synced: 2025-02-14T10:15:49.391Z (2 months ago)
- Language: PHP
- Homepage:
- Size: 206 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stormwind
Librería que contiene herramientas útiles para desarrollo de plugins de reconocimiento facial haciendo uso de AWS Rekognition.
### Instalación
```bash
composer requrie aws-project/stormwind:dev-main
```### Testeo
Para ejecutar pruebas unitarias de esta librería es necesario crear un archivo `.env` dentro de la carpeta `tests` que siga el siguiente formato:
```.env
AWS_REGION = aws_region
AWS_PUBLIC_KEY = aws_public_key
AWS_SECRET_KEY = aws_secret_key
# Dejar tal cual esta última variable de entorno
TEST=TEST
```##### Ejecución de pruebas unitarias
```bash
./vendor/bin/phpunit tests
```
o
```bash
composer run tests
```