summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3c7cd3fd9e674bacb799f2f2b7e304762e2145f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

CONFIG = ./config.nix

entrypoint:
	nix-build -A entrypoint \
		--arg baseConfig '(import ${CONFIG})'

install:
	$$(nix-build -A install --arg baseConfig '(import ${CONFIG})')

test:
	$$(nix-build --no-out-link -A pkgs.bash)/bin/bash srv-dev-env.sh \
    	--run "cd srv/src && go test ./... -count=1 -tags integration"
	@echo "\nTESTS PASSED!\n"

srv.dev-shell:
	$$(nix-build --no-out-link -A pkgs.bash)/bin/bash srv-dev-env.sh \
		--command " \
			cd srv/src; \
			go run cmd/import-posts/main.go ../../static/src/_posts/*; \
			return; \
		"

srv.shell:
	nix-shell -A srv.shellWithBuild --arg baseConfig '(import ${CONFIG})' \
		--command 'cd srv/src; return'