Updated .gitignore and added justfile
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,3 +1,8 @@
|
|||||||
tmp
|
tmp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea
|
.idea
|
||||||
|
*templ.go
|
||||||
|
conf.yaml
|
||||||
|
output.css
|
||||||
|
compose.yaml
|
||||||
|
tailwindcss
|
||||||
|
|||||||
78
justfile
Normal file
78
justfile
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
# Build the application
|
||||||
|
all: build test
|
||||||
|
|
||||||
|
templ-install:
|
||||||
|
@if ! command -v templ > /dev/null; then \
|
||||||
|
read -p "Go's 'templ' is not installed on your machine. Do you want to install it? [Y/n] " choice; \
|
||||||
|
if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \
|
||||||
|
go install github.com/a-h/templ/cmd/templ@latest; \
|
||||||
|
if [ ! -x "$$(command -v templ)" ]; then \
|
||||||
|
echo "templ installation failed. Exiting..."; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
else \
|
||||||
|
echo "You chose not to install templ. Exiting..."; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
tailwind:
|
||||||
|
@if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-macos-x64 -o tailwindcss; fi
|
||||||
|
@chmod +x tailwindcss
|
||||||
|
|
||||||
|
build:
|
||||||
|
@echo "Building..."
|
||||||
|
@templ generate
|
||||||
|
@./tailwindcss -i cmd/web/assets/css/input.css -o cmd/web/assets/css/output.css
|
||||||
|
@go build -o main cmd/main.go
|
||||||
|
|
||||||
|
run:
|
||||||
|
@templ generate
|
||||||
|
@go run cmd/main.go
|
||||||
|
|
||||||
|
test: build
|
||||||
|
@echo "Testing..."
|
||||||
|
@go test ./... -v
|
||||||
|
|
||||||
|
# Clean the binary
|
||||||
|
clean:
|
||||||
|
@echo "Cleaning..."
|
||||||
|
@rm -f main
|
||||||
|
|
||||||
|
# Create DB container
|
||||||
|
docker-run:
|
||||||
|
@if docker compose up --build 2>/dev/null; then \
|
||||||
|
: ; \
|
||||||
|
else \
|
||||||
|
echo "Falling back to Docker Compose V1"; \
|
||||||
|
docker-compose up --build; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Shutdown DB container
|
||||||
|
docker-down:
|
||||||
|
@if docker compose down 2>/dev/null; then \
|
||||||
|
: ; \
|
||||||
|
else \
|
||||||
|
echo "Falling back to Docker Compose V1"; \
|
||||||
|
docker-compose down; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
watch-templ:
|
||||||
|
templ generate --watch --proxy="http://localhost:8080" --cmd="go run ."
|
||||||
|
|
||||||
|
# Live Reload
|
||||||
|
watch:
|
||||||
|
@if command -v air > /dev/null; then \
|
||||||
|
air; \
|
||||||
|
echo "Watching...";\
|
||||||
|
else \
|
||||||
|
read -p "Go's 'air' is not installed on your machine. Do you want to install it? [Y/n] " choice; \
|
||||||
|
if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \
|
||||||
|
go install github.com/air-verse/air@latest; \
|
||||||
|
air; \
|
||||||
|
echo "Watching...";\
|
||||||
|
else \
|
||||||
|
echo "You chose not to install air. Exiting..."; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user