mirror of
https://github.com/davegallant/rfd-fyi.git
synced 2025-08-05 23:03:39 +00:00
Remove database
This commit is contained in:
25
Makefile
Normal file
25
Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
SHELL := bash
|
||||
.SHELLFLAGS := -eu -o pipefail -c
|
||||
.DELETE_ON_ERROR:
|
||||
MAKEFLAGS += --warn-undefined-variables
|
||||
MAKEFLAGS += --no-builtin-rules
|
||||
|
||||
## help: Print this help message
|
||||
help:
|
||||
@echo
|
||||
@echo "Usage:"
|
||||
@echo
|
||||
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /' | sort
|
||||
@echo
|
||||
.PHONY: help
|
||||
|
||||
## backend-server: Build and run the backend from source
|
||||
backend-server:
|
||||
@cd backend && go run .
|
||||
.PHONY: server
|
||||
|
||||
|
||||
## frontend-server: Build and run the frontend from source
|
||||
frontend-server:
|
||||
@npx vue-cli-service serve
|
||||
.PHONY: server
|
Reference in New Issue
Block a user