This is repository of "Simple Sudoku App".
You can access the website by clicking or scanning the QR code below.
This application is powered by OR-Tools.
UI was referenced from sadanandpai/sudoku-solver.
- docker is required
# Please set the .env file before executing it.
docker compose up -d
You can check api references http://localhost:8000/docs/ after building server.
# Please change the username and tag correctly.
docker build -t takanarishimbo/simple-sudoku-app:v1.0.0 .
- conda or miniconda is required
conda create -n simple_sudoku_app python=3.10
conda activate simple_sudoku_app
# Please activate venv before executing it.
pip install -r requirements.txt
# 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.