Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Aisuko <[email protected]>
  • Loading branch information
Aisuko committed Mar 21, 2024
1 parent 574eee8 commit f262751
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: env
env:
@cp .env.example .env

.PHONY: build
build: env
docker-compose build

.PHONY: up
up: env build
docker-compose up -d
2 changes: 0 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.9'

services:
db:
image: postgres:latest
Expand Down

0 comments on commit f262751

Please sign in to comment.