We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bf6b4b commit fe85053Copy full SHA for fe85053
.env.example
@@ -6,4 +6,5 @@ POSTGRES_PASSWORD=your-postgres-password
6
POSTGRES_DB=your-postgres-database
7
POSTGRES_HOST=your-postgres-host
8
POSTGRES_PORT=your-postgres-port
9
-RANK_ENABLED=false
+RANK_ENABLED=false
10
+SEASON=5
src/config/index.ts
@@ -19,5 +19,5 @@ export const config = {
19
ranking: {
20
enabled: process.env.RANK_ENABLED === "true",
21
},
22
- season: 4,
+ season: Number(process.env.SEASON),
23
};
0 commit comments