This repository has been archived on 2026-01-06. You can view files and clone it, but cannot push or open issues/pull-requests.
|
IMAGE := rust_api:latest
|
|
|
|
shell := /bin/bash
|
|
|
|
|
|
all: debug
|
|
.PHONY: all
|
|
|
|
# Builds
|
|
debug:
|
|
@ cargo build
|
|
.PHONY: debug
|
|
|
|
release:
|
|
@ cargo build --release
|
|
.PHONY: release
|
|
|
|
image: Dockerfile
|
|
@ DOCKER_BUILDKIT=1 docker build -t '$(IMAGE)' .
|
|
.PHONY: image
|
|
|
|
|
|
# Run
|
|
run:
|
|
@ cargo run
|
|
|