first commit

This commit is contained in:
meninjar
2026-04-14 01:21:54 +00:00
commit 35c101725f
443 changed files with 1245931 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Versi development dengan hot reload
FROM golang:1.25-alpine AS dev
WORKDIR /app
# Install air untuk hot reload
RUN go install github.com/cosmtrek/[email protected]
# Install dependencies
COPY go.mod go.sum ./
RUN go mod download
# Copy source code
COPY . .
# Expose port
EXPOSE 8094
# Run air untuk hot reload
CMD ["air", "-c", ".air.toml"]