5 Commits

Author SHA1 Message Date
dependabot[bot] 7de00d67a7 Bump astro from 6.1.2 to 6.4.6 in /front
Bumps [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) from 6.1.2 to 6.4.6.
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@6.4.6/packages/astro)

---
updated-dependencies:
- dependency-name: astro
  dependency-version: 6.4.6
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-20 06:43:46 +00:00
Hadi bb778b4374 Merge pull request #5 from rangampallysonali/iknowyou 2026-05-28 08:28:59 +02:00
Sonali Rangampally 9f93a759f0 Add Dockerfile and Docker-compose.yml 2026-05-26 16:17:49 -07:00
Hadi ea5c3484d9 Edit home
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-04-13 19:34:17 +02:00
Hadi c1a50103b9 gravatar: no output when not found
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-04-13 19:28:43 +02:00
6 changed files with 60 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
.git
.gitignore
node_modules
front/node_modules
front/dist
back/tmp
*.log
.DS_Store
+38
View File
@@ -0,0 +1,38 @@
FROM oven/bun:1-alpine AS frontend-builder
WORKDIR /app/front
COPY front/package.json front/bun.lock ./
RUN bun install --frozen-lockfile
COPY front/ ./
RUN bun run build
FROM golang:1.25-alpine AS backend-builder
WORKDIR /app/back
COPY back/go.mod back/go.sum ./
RUN go mod download
COPY back/ ./
RUN go build -o iknowyou ./cmd/server
FROM alpine:latest
WORKDIR /app
RUN apk add --no-cache ca-certificates
COPY --from=backend-builder /app/back/iknowyou .
COPY --from=frontend-builder /app/front/dist ./static
EXPOSE 8080
ENV IKY_PORT=8080
ENV IKY_FRONT_DIR=/app/static
CMD ["./iknowyou"]
@@ -3,6 +3,7 @@ package gravatarrecon
import (
"context"
"os/exec"
"strings"
"github.com/anotherhadi/iknowyou/internal/tools"
)
@@ -46,9 +47,11 @@ func (r *Runner) Run(ctx context.Context, target string, _ tools.InputType, out
if err != nil && ctx.Err() != nil {
out <- tools.Event{Tool: name, Type: tools.EventTypeError, Payload: "scan cancelled"}
} else if output != "" {
if !strings.Contains(output, "status 404") {
out <- tools.Event{Tool: name, Type: tools.EventTypeOutput, Payload: output}
count = 1
}
}
out <- tools.Event{Tool: name, Type: tools.EventTypeCount, Payload: count}
out <- tools.Event{Tool: name, Type: tools.EventTypeDone}
return nil
+7
View File
@@ -0,0 +1,7 @@
services:
iknowyou:
build: .
container_name: iknowyou
ports:
- "8080:8080"
restart: unless-stopped
+1 -1
View File
@@ -15,7 +15,7 @@
"@lucide/svelte": "^1.7.0",
"@tailwindcss/vite": "^4.2.1",
"ansi_up": "^6.0.6",
"astro": "6.1.2",
"astro": "6.4.6",
"dompurify": "^3.3.3",
"js-yaml": "^4.1.1",
"remark-github-blockquote-alert": "^2.1.0",
+1
View File
@@ -75,6 +75,7 @@ in {
IKY_FRONT_DIR = "${cfg.package}/share/iky/frontend";
IKY_SEARCH_TTL = cfg.searchTTL;
IKY_CLEANUP_INTERVAL = cfg.cleanupInterval;
HOME = "%S/iky";
};
serviceConfig = {