Make it public!
This commit is contained in:
28
Makefile
Normal file
28
Makefile
Normal file
@@ -0,0 +1,28 @@
|
||||
.PHONY: start
|
||||
start:
|
||||
deno task start
|
||||
|
||||
.PHONY: format
|
||||
format:
|
||||
deno fmt
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
deno task check
|
||||
deno task test
|
||||
|
||||
.PHONY: build
|
||||
build:
|
||||
deno task build
|
||||
|
||||
.PHONY: migrate-db
|
||||
migrate-db:
|
||||
deno run --allow-net --allow-read --allow-env migrate-db.ts
|
||||
|
||||
.PHONY: crons/cleanup
|
||||
crons/cleanup:
|
||||
deno run --allow-net --allow-read --allow-env crons/cleanup.ts
|
||||
|
||||
.PHONY: exec-db
|
||||
exec-db:
|
||||
docker exec -it -u postgres $(shell basename $(CURDIR))-postgresql-1 psql
|
||||
Reference in New Issue
Block a user