Skip to content

Commit

Permalink
add: make file descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
genzyy committed Oct 29, 2023
1 parent f867183 commit 097b703
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,31 +30,31 @@ dependencies: ## Install dependencies required by the application
yarn install

.PHONY: infra-up
infra-up:
infra-up: ## Run docker images
docker-compose -f ./docker-compose.yml up -d

.PHONY: infra-down
infra-down:
infra-down: ## Stop docker images
docker-compose down

.PHONY: run
run:
run: ## Run api in dev environment
yarn dev

.PHONY: build
build:
build: ## Build project
yarn build

.PHONY: check-format
check-format:
check-format: ## Check format using eslint and prettier
yarn run lint && yarn run prettier

.PHONY: format
format:
format: ## Format project with eslint and prettier
yarn run lint:fix && yarn run prettier:fix

.PHONY: db-generate
db-generate:
db-generate: ## Apply new model changes to db using prisma orm
yarn run prisma generate

.PHONY: db-push
Expand Down

0 comments on commit 097b703

Please sign in to comment.