Add support for 2-stage import with web server

This commit is contained in:
2025-05-06 16:10:13 +02:00
parent 23b92aa90d
commit 08dba9c51f
7 changed files with 688 additions and 121 deletions

View File

@@ -7,5 +7,10 @@ buildNpmPackage {
pname = "actual-importer";
version = "0.0.1";
src = ./.;
npmDepsHash = "sha256-ayfvTn8FVo7/K/Gy7oTDQiXDewvrU7B5JsNLHfrxibQ=";
npmDepsHash = "sha256-QqSZJuQLPll3qFi5Lv4kbQo+548l3VKgx073WLNXMsw=";
postInstall = ''
mkdir -p $out/views
cp -r ${./views}/* $out/views/
'';
}