summaryrefslogtreecommitdiff
path: root/Makefile
blob: 1b9b4dd1958531aaa827319b574437bd2065e1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
# SPDX-FileCopyrightText: 2024 Matthew Fennell <matthew@fennell.dev>
#
# SPDX-License-Identifier: AGPL-3.0-only

.PHONY: check lint staging prod

check:
	make lint
	make staging

staging:
	ansible-playbook --inventory inventory/staging.ini playbook.yaml

prod:
	ansible-playbook --inventory inventory/prod.ini playbook.yaml

lint:
	precious --ascii lint --all