- Introduced a new `spin_sessions` table to track user spin activities. - Updated the API to include a new endpoint for spinning games, allowing users to place bets and specify spin counts. - Enhanced game information structure and added validation for bets and spin counts. - Implemented the `Forest Fortune` slot game mechanics, including payline evaluation and scatter functionality. - Updated dependencies in `pyproject.toml` for development and added `httpx` for HTTP requests. - Added unit tests for the new slot mechanics and API endpoints to ensure functionality and reliability.
27 lines
526 B
TOML
27 lines
526 B
TOML
[project]
|
|
name = "vyryi-back"
|
|
version = "0.1.0"
|
|
description = "Vyryi Telegram Mini App API"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi==0.115.6",
|
|
"uvicorn[standard]==0.34.0",
|
|
"sqlalchemy==2.0.36",
|
|
"psycopg2-binary==2.9.10",
|
|
"alembic==1.14.0",
|
|
"pydantic==2.10.3",
|
|
"pydantic-settings==2.6.1",
|
|
"python-jose[cryptography]==3.3.0",
|
|
"python-multipart==0.0.20",
|
|
"greenlet==3.1.1",
|
|
]
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"httpx>=0.28.1",
|
|
]
|