noaa/makefile

11 lines
172 B
Makefile
Raw Normal View History

2024-05-31 17:25:40 +00:00
run: build
2024-05-31 21:05:02 +00:00
docker run --rm -ti --name noaa -e HOST_NAME=localhost -p 9021:9021 -p 4200:4200 noaa
2024-05-31 17:25:40 +00:00
build:
docker build -t noaa .
lint:
isort --profile=black .
black .