From 70719b3ac1578da90935391d74ce57d70bc415e9 Mon Sep 17 00:00:00 2001 From: Manuel Date: Tue, 12 Mar 2024 19:50:20 -0400 Subject: [PATCH] chore: small typo fix on readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a270c8..48302b1 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ podman build -t helldivers2:latest . ``` Now to run this container, you'll need a few variables to configure how the API behaves (TLDR below!): -- `SECRET_KEY_BASE` used by the application for singing private or sensitive information, if you're running a private instance publicly you'll want a secure random string of 64 characters +- `SECRET_KEY_BASE` used by the application for signing private or sensitive information, if you're running a private instance publicly you'll want a secure random string of 64 characters - `FLY_APP_NAME` used internally for networking code to find other instances (you can just use `helldivers-2` for this) - `FLY_IMAGE_REF` the container reference, this helps cluster to only the same version of the app (you can set this to `0`) - `FLY_PRIVATE_IP` - used to uniquely identify this node in the cluster (if you're running a single instance you can use `127.0.0.1`)