In this project I have implemented a sudoku generator using javascript.For the frontend I have used some basic CSS integrated with JS to make it very interactive.The project is deployed in the form of a game so you can try solving the generated puzzle on the site whose link is given below:
Deployed using Gcloud: https://sunny-caldron-373813.ue.r.appspot.com/
Deployed on Github Pages:https://github.com/NiranjanHebli/Sudoku-Generator/deployments/activity_log?environment=github-pages
- Light/dark mode toggle
- Various difficulty levels
- Interactive interface
A short demo:
First step, you have to enable App Engine Admin API in your Project,After enabling the API go to Cloud Shell and write the Command:
gcloud app create
Second step,open the Text Editor and create a new directory www and add the project folders and files in it.In the root directory create a file deploy.yaml add the following code in it:
runtime: python27
api_version: 1
threadsafe: true
handlers:
\- url: /
static_files: www/index.html
upload: www/index.html
\- url: /(.*)
static_files: www/\1
upload: www/(.*)
Third step,run the following commands:
gcloud app deploy deploy.yaml
gcloud app browse
(remember to run this commands in the root directory)
There you go :D