Files
web/apps/scandic-web/i18n/tooling/upload.ts
2025-04-14 11:30:07 +00:00

15 lines
281 B
TypeScript

import path from "node:path"
import { config } from "dotenv"
config({ path: `${process.cwd()}/.env.local` })
const filepath = path.resolve(__dirname, "./extracted.json")
async function main() {
const { upload } = await import("./lokalise")
await upload(filepath)
}
main()