bump react and nextjs
Some checks failed
Deploy Backend / deploy (push) Successful in 5m19s
Deploy Website / deploy (push) Failing after 2m59s

This commit is contained in:
Lee
2024-10-13 01:14:51 +01:00
parent ae2f30a97a
commit 8c3ca26c9c
5 changed files with 6 additions and 8 deletions

View File

@ -21,7 +21,7 @@ import { delay } from "@ssr/common/utils/utils";
// Load .env file
dotenv.config({
logLevel: "success",
logLevel: (await Bun.file(".env").exists()) ? "success" : "warn",
path: ".env",
override: true,
});
@ -33,8 +33,8 @@ export const app = new Elysia();
app.use(
cron({
name: "player-statistics-tracker-cron",
pattern: "1 0 * * *", // Every day at 00:01 (London time)
timezone: "Europe/London",
pattern: "1 0 * * *", // Every day at 00:01
timezone: "Europe/London", // UTC time
run: async () => {
const pages = 20; // top 1000 players
const cooldown = 60_000 / 250; // 250 requests per minute