https://github.com/timothymakkison/hexle
Varitaion of Wordle where you guess the a colors RGB value.
https://github.com/timothymakkison/hexle
react tailwin typescript wordle
Last synced: 2 months ago
JSON representation
Varitaion of Wordle where you guess the a colors RGB value.
- Host: GitHub
- URL: https://github.com/timothymakkison/hexle
- Owner: TimothyMakkison
- License: mit
- Created: 2022-03-05T11:42:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-23T21:42:11.000Z (about 3 years ago)
- Last Synced: 2025-01-21T02:12:44.160Z (4 months ago)
- Topics: react, tailwin, typescript, wordle
- Language: TypeScript
- Homepage:
- Size: 3.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# React Hexle
This is a variation on Wordle where you guess the RGB values of an unknown color. Built upon the popular [react-wordle](https://github.com/cwackerfuss/react-wordle). Made using React, Typescript, and Tailwind.
[**Try out the demo!**](https://timothymakkison.github.io/Hexle/) at [https://timothymakkison.github.io/Hexle/](https://timothymakkison.github.io/Hexle/)

## Build and run
### To Run Locally:
Clone the repository and perform the following command line actions:
```bash
$> cd react-wordle
$> npm install
$> npm run start
```### To build/run docker container:
#### Development
```bash
$> docker build -t reactle:dev -f docker/Dockerfile .
$> docker run -d -p 3000:3000 --name reactle-dev reactle:dev
```Open [http://localhost:3000](http://localhost:3000) in browser.
#### Production
```bash
$> docker build --target=prod -t reactle:prod -f docker/Dockerfile .
$> docker run -d -p 80:8080 --name reactle-prod reactle:prod
```Open [http://localhost](http://localhost) in browser.