No description
Find a file
Tamipes 3f8fb4a01f
All checks were successful
/ build (push) Successful in 5m25s
fix: docker-image would not build due to syntax mistake
2026-06-08 01:00:37 +02:00
.forgejo/workflows feat: add forgejo actions yaml to auto build and push a container image 2026-06-03 11:50:47 +02:00
kube fix: deployment.yaml should use latest, not testing 2026-06-07 16:12:41 +02:00
src fix: docker-image would not build due to syntax mistake 2026-06-08 01:00:37 +02:00
.envrc inital working commit 2025-11-24 23:08:26 +01:00
.gitignore feat: add connection filters; and config struct; 2025-12-14 12:56:21 +01:00
.ignore inital working commit 2025-11-24 23:08:26 +01:00
build.rs chore: startup logging polish; BIND_PORT env var setting added 2025-12-04 00:25:07 +01:00
Cargo.lock feat: move start_watch into trait definition, to do that use async_traits 2026-06-04 19:31:20 +02:00
Cargo.toml feat: move start_watch into trait definition, to do that use async_traits 2026-06-04 19:31:20 +02:00
deny.toml inital working commit 2025-11-24 23:08:26 +01:00
docker.nix fix: docker-image would not build due to syntax mistake 2026-06-08 01:00:37 +02:00
flake.lock chore: update flake.lock 2026-01-17 11:17:24 +01:00
flake.nix feat: add localized tmux server 2026-05-28 17:59:28 +02:00
README.md feat: add localized tmux server 2026-05-28 17:59:28 +02:00
taplo.toml inital working commit 2025-11-24 23:08:26 +01:00

Development

TODO: fill this out

Nix shell with tmux

In the nix flake there is a devshell setup with cargo and tmux. When using tmux it uses a set tmux server path, so only this project uses it.

Env variables:

# Address the server should bind to
# BIND_ADDR="0.0.0.0:25565"

# Filter appplied with [evalexpr](https://docs.rs/evalexpr/latest/evalexpr/)
#   The "context" has the addr variable populated with the address of part of the
#   handshake packet. Custom filter can be specified, and drop any
#   connections which match the filter.
# FILTER_CONN='(addr == "10.100.0.1")'