feat: reset password cli (#903)

* feat: add password reset cli

* feat: add homarr cli to docker image
This commit is contained in:
Meier Lukas
2024-08-04 21:44:51 +02:00
committed by GitHub
parent ca1ecdf848
commit 7fa5e70d5b
16 changed files with 193 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
import { randomBytes } from "crypto";
/**
* Generates a random hex token twice the size of the given size
* @param size amount of bytes to generate
* @returns a random hex token twice the length of the given size
*/
export const generateSecureRandomToken = (size: number) => {
return randomBytes(size).toString("hex");
};

View File

@@ -0,0 +1 @@
export * from "./security";