Ping 15/06/2022 .01
비 내리는 화요일. ☂️
jinja2 template include + cache? + file-time
재밌는걸 찾았다.
jinja2을 사용하면서, 하위 include으로 내려갈수록, file을 생성해줘도, 그냥 touch을 해줘서 파일시간을 갱신해줘야 template cache을 무시하는거 같아.
그래서,
// gulpfile.js:
const buildTask = series(cleanTask, esbuildTask, injectTask, touchInjectedTask);
function watchTask() {
watch("./js/**/*.js", buildTask);
}
exports.watch = watchTask;
exports.build = buildTask;
exports.clean = cleanTask;
…대략 잘 동작하고, webpack보다 엄청나게 빠르다 ㅎㅎ.
postgresql, as an api server?
요런것들 올라오는거 보는 재미:
https://github.com/graphile/postgraphile
https://github.com/supabase/pg_graphql
https://postgrest.org/en/stable/
https://github.com/prest/prest
검증/형상관리만 잘 한다면, 실은 가장 중심을 잘 잡은 구조일지도. ㅎㅎㅎ