CRM-like platform by Tentacles
Find a file Use this template
Miguel García-Ferrer bfa2a2b0c3 fix: scraper max_time overflow + result_count always 0
Two bugs fixed in scraper service:

1. max_time overflow (scraper exits immediately with 0 results)
   The Go scraper decodes job data via interface{}, converting all JSON
   numbers to float64. For large nanosecond values the float64→int64
   conversion produced negative durations. Fix: cap max_time at 600s
   (known-good value), and document the root cause.

2. result_count always 0 in get_job()
   The scraper API never includes result_count in the per-job JSON
   response (only in list). Fix: when a job is complete and result_count
   is 0, download the CSV and count rows to get the real count.
2026-05-23 00:56:15 +02:00
.claude feat: add step reordering functionality and integrate FlowEditor component 2026-04-15 15:21:58 +02:00
backend fix: scraper max_time overflow + result_count always 0 2026-05-23 00:56:15 +02:00
docs Add initial sales platform scaffold 2026-04-15 09:16:28 +02:00
frontend fix: resolve frontend build errors on main sync 2026-04-23 14:09:39 +02:00
.dockerignore Refactor Docker setup for multi-stage builds and add supervisord for process management 2026-04-15 10:06:15 +02:00
.gitignore Add initial sales platform scaffold 2026-04-15 09:16:28 +02:00
docker-compose.yml Add initial sales platform scaffold 2026-04-15 09:16:28 +02:00
Dockerfile Use npm install instead of npm ci to fix cross-platform lock file issue 2026-04-15 10:29:54 +02:00
nginx.conf Refactor Docker setup for multi-stage builds and add supervisord for process management 2026-04-15 10:06:15 +02:00
README.md Initial commit 2026-04-03 11:45:03 +00:00
supervisord.conf Refactor Docker setup for multi-stage builds and add supervisord for process management 2026-04-15 10:06:15 +02:00

sales_platform

CRM-like platform by Tentacles