Merge branch 'main' of github.com:uabluerail/indexer
This commit is contained in:
commit
655a3ca758
1 changed files with 32 additions and 0 deletions
32
Makefile
Normal file
32
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue