This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"@actual-app/api": "^6.8.1", | |
"dotenv": "^16.4.5", | |
"jsdom": "^24.1.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require("dotenv").config(); | |
const api = require('@actual-app/api'); | |
const payeeName = process.env.IMPORTER_PAYEE_NAME || 'Loan Interest'; | |
const url = process.env.ACTUAL_SERVER_URL || ''; | |
const password = process.env.ACTUAL_SERVER_PASSWORD || ''; | |
const sync_id = process.env.ACTUAL_SYNC_ID || ''; | |
const cache = process.env.IMPORTER_CACHE_DIR || './cache'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"@actual-app/api": "^6.7.0", | |
"dotenv": "^16.4.5", | |
"openai": "^4.33.0" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# global parameters | |
g_tmp_folder="ncdc_tmp"; | |
g_output_folder="ncdc_data"; | |
g_remote_host="ftp.ncdc.noaa.gov"; | |
g_remote_path="pub/data/noaa"; | |
yum install -y wget |