This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/server/calendar.js

19 lines
586 B
JavaScript
Raw Normal View History

2021-08-18 05:39:08 -07:00
require('dotenv').config({ path:__dirname + '/../.env' });
const Pageres = require('pageres');
const fs = require('fs');
const Suml = require('suml');
const locale = new Suml().parse(fs.readFileSync(`./data/config.suml`).toString()).locale;
(async () => {
const pr = new Pageres({
delay: 3,
});
pr.src(process.env.BASE_URL + '/calendar-wide', ['1500x300']);
for (let buffer of await pr.run()) {
const target = `${__dirname}/../static/calendar/calendar-${locale}.png`;
console.log(target);
fs.writeFileSync(target, buffer);
}
})();