Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/duquejo/ia-project-frontend
- Owner: duquejo
- Created: 2022-05-06T02:12:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-28T00:14:18.000Z (over 2 years ago)
- Last Synced: 2024-02-07T16:59:24.473Z (11 months ago)
- Topics: babel, reactjs, redux-toolkit, tailwindcss, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 1.46 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/*"
]
}
]
}```