Skip to content

TakanariShimbo/simple-sudoku-app

Repository files navigation

README | English | 日本語

🚀About

This is repository of "Simple Sudoku App".
You can access the website by clicking or scanning the QR code below.

QR-Code of WebSite

This application is powered by OR-Tools.
UI was referenced from sadanandpai/sudoku-solver.

🐋Docker

  • docker is required

Build server

# Please set the .env file before executing it.
docker compose up -d

You can check api references http://localhost:8000/docs/ after building server.

Build image

# Please change the username and tag correctly.
docker build -t takanarishimbo/simple-sudoku-app:v1.0.0 .

🐍Conda

  • conda or miniconda is required

Create venv

conda create -n simple_sudoku_app python=3.10

Activate venv

conda activate simple_sudoku_app

Install libs

# Please activate venv before executing it.
pip install -r requirements.txt

Build server

# Please activate venv before executing it.
uvicorn main:app --reload --host 0.0.0.0 --port 8000

You can check api references http://localhost:8000/docs/ after building server.

Releases

No releases published

Packages

No packages published