- Env key to be more generic - Cache directory to .cache - Multiply bank amount by 100 to get correct conversion rate Removed: - Unused functions in Actual.ts Added: - Test for main functionality - BankStub for testing - Added imported_id to Actual Transaction to avoid duplicates
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import assert from "node:assert"
|
|
import dotenv from "dotenv"
|
|
|
|
dotenv.config()
|
|
|
|
export const ACTUAL_BUDGET_ID = getOrThrow("ACTUAL_BUDGET_ID")
|
|
export const ACTUAL_SYNC_ID = getOrThrow("ACTUAL_SYNC_ID")
|
|
export const ACTUAL_SERVER_URL = getOrThrow("ACTUAL_SERVER_URL")
|
|
export const ACTUAL_PASSWORD = getOrThrow("ACTUAL_PASSWORD")
|
|
export const ACTUAL_ACCOUNT_IDS = getArrayOrThrow("ACTUAL_ACCOUNT_IDS")
|
|
export const ACTUAL_DATA_DIR = ".cache"
|
|
|
|
export const BANK_OAUTH_CLIENT_ID = getOrThrow("BANK_OAUTH_CLIENT_ID")
|
|
export const BANK_OAUTH_CLIENT_SECRET = getOrThrow("BANK_OAUTH_CLIENT_SECRET")
|
|
export const BANK_OAUTH_REDIRECT_URI = getOrThrow("BANK_OAUTH_REDIRECT_URI")
|
|
export const BANK_OAUTH_STATE = getOrThrow("BANK_OAUTH_STATE")
|
|
export const BANK_ACCOUNT_IDS = getArrayOrThrow("BANK_ACCOUNT_IDS")
|
|
|
|
function getOrThrow(key: string): string {
|
|
const value = process.env[key]
|
|
assert(value, `Missing environment variable: ${key}`)
|
|
return value
|
|
}
|
|
|
|
function getArrayOrThrow(key: string): ReadonlyArray<string> {
|
|
return getOrThrow(key).split(",")
|
|
}
|