Skip to content

NiranjanHebli/Sudoku-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku Generator

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

Screenshots

Sudoku Generator - Google Chrome 16-02-2022 19_48_00

Sudoku Generator - Google Chrome 16-02-2022 19_47_49

Features

  • Light/dark mode toggle
  • Various difficulty levels
  • Interactive interface

Demo

A short demo:

ezgif com-gif-maker

How to Deploy On Google Cloud?

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published