You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go fmt ./... && npx prettier --write "frontend/src/**/*.{js,jsx,ts,tsx,css,scss,md}"
server:
go run main.go
run:
cd frontend && npm start
mongo:
docker run -d -p 27017:27017 --name mongodb mongo
.PHONY: format server run mongo
# format, server, and run are marked as .PHONY, meaning make will always run the commands associated with them, even if there are files with those names.
# Without .PHONY, if a file named format_kar exists, make might skip the go fmt ./... command, assuming the target is up to date.