mirror of
https://github.com/arthur-pbty/sudoku.git
synced 2026-06-03 23:36:39 +02:00
62c898c208
- Added Sudoku grid generation with varying difficulty levels (easy, medium, hard). - Implemented Sudoku solving functionality. - Created a user interface for inputting and checking Sudoku solutions. - Added validation for user inputs and error handling for invalid grids. - Introduced a Docker configuration for easy deployment.
10 lines
222 B
YAML
10 lines
222 B
YAML
services:
|
|
sudoku-app:
|
|
image: node:20-alpine
|
|
working_dir: /app
|
|
volumes:
|
|
- ./:/app
|
|
command: sh -c "npm install && npm run build && npm start"
|
|
ports:
|
|
- "3005:3000"
|
|
restart: unless-stopped |