aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-06-17 22:20:14 +0200
committeruser@node5.net <user@node5.net>2026-06-18 17:34:04 +0200
commitaf029ee9cf17f8fcf7fef8ed0281a972481b5a6d (patch)
tree6c52e9e462300435285845ee176253c523398578
parentd666033398e56fbcc8f9a56b09dfdb6a7008fa98 (diff)
flake - rename path binary from blog-node5 -> node5-blog
-rw-r--r--flake.nix2
-rw-r--r--pyproject.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e491a13..a8ada5c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -31,7 +31,7 @@
description = "Blog backend for blog.node5.net";
homepage = "https://blog.node5.net/Blog%20meta/";
changelog = "https://git.node5.net/blog/blog.node5.net_flask/log/";
- mainProgram = "blog-node5";
+ mainProgram = "node5-blog";
};
propagatedBuildInputs = (attrs.propagatedBuildInputs or []) ++ [ pkgs.git ]; # Make git binary available
postInstall = ''
diff --git a/pyproject.toml b/pyproject.toml
index 3af770c..7f2fa2b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -16,4 +16,4 @@ dependencies = [
# define the CLI executable
# Here, we define the entry point to be the 'main()' function in the module 'app/main.py'
[project.scripts]
-blog-node5 = "blog_node5_net:main"
+node5-blog = "blog_node5_net:main"