Skip to content

Commit

Permalink
Create Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 29, 2024
1 parent 6c22a66 commit 4e6700c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.DEFAULT_GOAL := help

help:
@echo "Makefile for StarlightStation"
@echo ""
@echo "Targets:"
@echo " build Build the Docker image"
@echo " run Run the application"
@echo " test Run the tests"
@echo " lint Run the linter"
@echo " format Format the code"

build:
docker-compose build

run:
docker-compose up

test:
pytest

lint:
black --check.
isort --check.

format:
black.
isort.

0 comments on commit 4e6700c

Please sign in to comment.