Moved geo database location.

This commit is contained in:
Mike Cao 2022-08-03 19:20:13 -07:00
parent 48dc02c2d4
commit c37554214d
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ export async function getCountry(req, ip) {
// Database lookup
if (!lookup) {
lookup = await maxmind.open(path.resolve('./public/geo/GeoLite2-Country.mmdb'));
lookup = await maxmind.open(path.resolve('node_modules/.geo/GeoLite2-Country.mmdb'));
}
const result = lookup.get(ip);

View File

@ -14,7 +14,7 @@ if (process.env.MAXMIND_LICENSE_KEY) {
`?edition_id=GeoLite2-Country&license_key=${process.env.MAXMIND_LICENSE_KEY}&suffix=tar.gz`;
}
const dest = path.resolve(__dirname, '../public/geo');
const dest = path.resolve(__dirname, '../node_modules/.geo');
if (!fs.existsSync(dest)) {
fs.mkdirSync(dest);