https://github.com/n8e/sudokux
sudoku game: react and redux
https://github.com/n8e/sudokux
react webpack webpack-dev-server
Last synced: 3 months ago
JSON representation
sudoku game: react and redux
- Host: GitHub
- URL: https://github.com/n8e/sudokux
- Owner: n8e
- License: mit
- Created: 2017-11-21T12:00:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-15T09:13:23.000Z (about 3 years ago)
- Last Synced: 2025-03-30T07:32:06.584Z (about 1 year ago)
- Topics: react, webpack, webpack-dev-server
- Language: JavaScript
- Size: 664 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## To run:
1. Make sure you have `node` and `npm` installed
2. Run `npm install` to install the dependencies
3. Run `npm run dev` to start the server
4. Head to `localhost:3000`
## Docker
Configuration added on `Dockerfile`.
1. Build Docker image: `docker build -t us.gcr.io/sudokux-186808/sudokux .`. Confirm build by checking if image is listed `docker images`.
2. Run the container `docker run -d --name sudoku -p 3000:3000 us.gcr.io/sudokux-186808/sudokux`
3. Access the app on http://0.0.0.0:3000
## G Cloud
This app is hosted on `gcloud` following instructions found on GCP docs(https://cloud.google.com/kubernetes-engine/docs/tutorials/hello-app) or on this medium post(https://medium.com/@delanhype/dockerizing-and-deploying-a-nodejs-app-7779b1a2d2f6)
## Built wth:
* ES6 using [Babel](https://babeljs.io/) transpiler
* [React](https://facebook.github.io/react/)
* [Redux](http://redux.js.org/)
* [Lodash](https://lodash.com])
* [Webpack](https://webpack.github.io/)