Files
shuffle-cracked/backend/go-app
dependabot[bot] 771a672a4f Bump golang.org/x/crypto
Bumps the go_modules group with 1 update in the /backend/go-app directory: [golang.org/x/crypto](https://github.com/golang/crypto).


Updates `golang.org/x/crypto` from 0.38.0 to 0.39.0
- [Commits](https://github.com/golang/crypto/compare/v0.38.0...v0.39.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.39.0
  dependency-type: direct:production
  dependency-group: go_modules
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-24 17:58:05 +00:00
..
2025-06-24 17:58:05 +00:00
2025-06-24 17:58:05 +00:00

Run

go run main.go walkoff.go docker.go

Modify

  • Make sure it's connected with the latest version of the shuffle-shared library, which is used to get resources from Shuffle

Database

  • The database is Opensearch and can be modified with the SHUFFLE_OPENSEARCH_URL environment variable. See .env in the root directory for more. This requires Opensearch to be running (typically started from docker-compose.yml)
docker-compose up -d
docker stop shuffle-backend
docker stop shuffle-frontend
docker stop shuffle-orborus

Caching

  • To handle caching, it by default runs it in memory of the application itself. If you want to offload this, it can be done using the SHUFFLE_MEMCACHED environment variable, connecting to a memcached instance.
docker run --name shuffle-cache -p 11211:11211 -d memcached -m 1024