Merge branch 'main' of github.com:uabluerail/indexer

main
mathan 2024-02-18 12:35:54 -08:00
commit 655a3ca758
1 changed files with 32 additions and 0 deletions

32
Makefile 100644
View File

@ -0,0 +1,32 @@
.PHONY: all build up update down start-db status logs
all:
go test -v ./...
.env: example.env
@cp example.env .env
@echo "Please edit .env to suit your environment before proceeding"
@exit 1
build: .env
@docker compose build
up: .env
@docker compose up -d --build
update: up
down:
@docker compose down
start-db:
@docker compose up -d postgres
status:
@docker compose stats
logs:
@docker compose logs -f -n 50 lister consumer record-indexer
psql:
@docker compose exec -it postgres psql -U postgres -d bluesky