-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 985 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# NetworkCrawler — Environment Variables
# Copy this file to .env and fill in values for your environment.
# NEVER commit .env — it is gitignored.
# Network interface to scan from (e.g. eth0, ens18, br0)
NETWORK_INTERFACE=eth0
# CIDR subnet to discover devices within
SCAN_SUBNET=192.168.1.0/24
# How often to run automatic background scans (seconds)
SCAN_INTERVAL_SECONDS=3600
# Logging verbosity: DEBUG | INFO | WARNING | ERROR
LOG_LEVEL=INFO
# ── Docker Hub publish (CI use only — set as GitHub Actions secrets) ─────────
# These are NOT used at runtime. They are only consumed by the
# .github/workflows/docker.yml build-and-push workflow.
#
# Required GitHub repository secrets (Settings → Secrets → Actions):
# DOCKERHUB_USERNAME talesofthemoon
# DOCKERHUB_TOKEN Docker Hub access token (Account Settings → Security → New Access Token)
#
# Optional: pin a specific image tag when pulling via docker compose
# IMAGE_TAG=latest