Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/duquejo/ia-project-frontend

Just for fun React JS + IA Project. Uses Letter patterns recognition for evaluation through a backend service and exposes it recognition results as part of hangman game.
https://github.com/duquejo/ia-project-frontend

babel reactjs redux-toolkit tailwindcss typescript webpack

Last synced: about 2 months ago
JSON representation

Just for fun React JS + IA Project. Uses Letter patterns recognition for evaluation through a backend service and exposes it recognition results as part of hangman game.

Awesome Lists containing this project

README

        

# IA Hangman Project

_Link to [Backend repository URL](https://github.com/duquejo/IA-BackendNode)_

### NPM Commands
* **start**: `webpack serve --mode development`,
* **build**: `webpack --mode production --config webpack.config.prod.js`,
* **build:dev**: `webpack --mode development --config webpack.config.js`,
* **upload:s3**: `aws s3 cp dist/ s3://hangman-ia-app/ --recursive`,
* **deploy**: `npm run build && npm run upload:s3`

### AWS Bucket Policy config
```
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicReadAccess",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::hangman-ia-app/*"
]
}
]
}

```