feat: add country for customization

Based on #37
This commit is contained in:
Jef LeCompte
2025-07-18 22:25:01 -07:00
parent 6fa9aee5ee
commit 801b3cf725
4 changed files with 10 additions and 3 deletions

View File

@@ -10,6 +10,10 @@ export const config = {
process.env.TIMESPAN ||
process.argv.find((arg) => arg.startsWith("--timespan="))?.split("=")[1] ||
"3",
country:
process.env.COUNTRY ||
process.argv.find((arg) => arg.startsWith("--country="))?.split("=")[1] ||
"USA",
postalCode:
process.env.POSTAL_CODE ||
process.argv