Work on Invoice Ninja v5.10.29

* Module now uses caddy instead of nginx
* Module now has adminEmail and adminPassword options
This commit is contained in:
2024-10-04 09:56:33 -04:00
parent e8461e398c
commit 60640a5023
5 changed files with 103 additions and 140 deletions

View File

@@ -11,8 +11,7 @@
# Since all targets are phony, all targets should be listed here
# One target per line
.PHONY: boot-graphical-vm \
boot-vm \
.PHONY: boot-vm \
build-vm \
clean \
format-nix-files \
@@ -29,8 +28,8 @@ format-nix-files: ## Format nix files using the nixpkgs-fmt tool
find . -name "*.nix" -exec nixpkgs-fmt {} \;
clean: ## Clean build artifacts and shutdown running virtual machines
rm result
rm nixos.qcow2
rm result > /dev/null 2>&1
rm nixos.qcow2 > /dev/null 2>&1
pkill qemu
exit 0
@@ -46,6 +45,3 @@ boot-vm: ## Run virtual machine in current terminal
-nographic; \
reset
boot-graphical-vm: ## Run virtual machine in QEMU window
./result/bin/run-nixos-vm