ducthanh98 / airdrop

39 stars 10 forks source link

BUMP ERROR? #2

Closed sitxxar closed 3 months ago

sitxxar commented 3 months ago

I ran the bump script, but what came out was a query without any response image

ducthanh98 commented 3 months ago

I updated a new version. You can check it again

doubleTroub1e commented 3 months ago

hi, I also do have error with bump

image

also, as a suggestion: don't you want adding docker compose file like:

x-defaults:
  &default-service
  restart: unless-stopped
  stop_signal: SIGINT
  tty: true
  logging:
    driver: "json-file"
    options:
      max-size: 1m

services:
  gemz:
    <<: *default-service
    image: local:gemz_rasp4_20240620
    container_name: 'gemz'
    volumes:
      - ./gemz/query.txt:/app/query.txt  # Specific volume for gemz

  quackquack:
    <<: *default-service
    image: local:quackquack_rasp4_20240624
    container_name: 'quackquack'
    volumes:
      - ./quackquack/main.go:/root/main.go
      - ./quackquack/conf.toml:/root/conf.toml

  bump:
    <<: *default-service
    image: local:bump_rasp4_20240627
    container_name: 'bump'
    volumes:
      - ./bump/query.txt:/app/query.txt
      - ./bump/proxy.txt:/app/proxy.txt

guess adding query as ENV variable would make it easier to work/update FYI: I don't use proxy, so proxy file is empty PS: you can add some sample image of how to extract query like this

image

Also, making logs on English would make it simpler to use on any market), but not crucial for those who really want to start it)

ducthanh98 commented 3 months ago

Oh, my fault. I copied it from another folder, so it's still named 'query.txt'. In fact, you just need to put your user ID from query_id like this

Screen Shot 2024-06-27 at 20 50 25
ducthanh98 commented 3 months ago

And I pushed a no-proxy version. You can use that file. I will update the document when I have free time.

doubleTroub1e commented 3 months ago

thanks @ducthanh98 everything is working fine for me now)

sitxxar commented 3 months ago

I updated a new version. You can check it again

thx, helpfully