CI / Build and push docker image (push) Successful in 3m12s
The platform now hosts multiple card games, with scopone scientifico as the first one. Rename the brand wherever it is not a game rule: - move the Python package to server/src/tavolo and update imports - rename the Postgres database/user, OIDC issuer path, client id and Redis key prefixes to tavolo (clean break: existing pgdata volumes and live games are not migrated) - rename the Cargo package to tavolo-web and set the page title to Tavolo - update docs and the Docker image path to woggioni/tavolo The scopa game term (clearing the table) in the engine, state and web UI is intentionally left untouched.
24 lines
574 B
TOML
24 lines
574 B
TOML
[package]
|
|
name = "tavolo-web"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Sycamore/WASM frontend for the tavolo card-game platform"
|
|
|
|
[dependencies]
|
|
sycamore = "0.9"
|
|
sycamore-router = "0.9"
|
|
gloo-net = { version = "0.6", features = ["websocket"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
futures = "0.3"
|
|
web-sys = { version = "0.3", features = ["Window", "Location", "console"] }
|
|
js-sys = "0.3"
|
|
gloo-timers = "0.3"
|
|
console_error_panic_hook = "0.1"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|