[GH-ISSUE #622] Importer Folder #489

Open
opened 2026-02-25 21:32:02 +03:00 by kerem · 1 comment
Owner

Originally created by @derToaster1412 on GitHub (Aug 8, 2024).
Original GitHub issue: https://github.com/ciur/papermerge/issues/622

Originally assigned to: @ciur on GitHub.

Hey ciur, thank you for this amazing project ! Maybe im too simple to understand but im trying to set papermerge up and create a folder which will be used by my scanner to upload scanned files into papermerge. I saw that there is an Importer functionality in the 2.0 version but I cannot find it in the 3.x versions. Am I missing something ?

thanks again for the help

cheers

Installed via docker compose


x-backend: &common
  image: papermerge/papermerge:3.2
  environment:
    PAPERMERGE__SECURITY__SECRET_KEY: 12345
    PAPERMERGE__AUTH__USERNAME: admin
    PAPERMERGE__AUTH__PASSWORD: admin
    PAPERMERGE__DATABASE__URL: postgresql://coco:kesha@db:5432/cocodb
    PAPERMERGE__REDIS__URL: redis://redis:6379/0
  volumes:
    - index_db:/core_app/index_db
    - media:/core_app/media
services:
  web:
    <<: *common
    ports:
     - "12000:80"
    depends_on:
      db:
        condition: service_healthy
      redis:
        condition: service_healthy
  worker:
    <<: *common
    command: worker
  redis:
    image: redis:6
    healthcheck:
      test: redis-cli --raw incr ping
      interval: 5s
      timeout: 10s
      retries: 5
      start_period: 10s
  db:
    image: postgres:16.1
    volumes:
      - postgres_data:/var/lib/postgresql/data/
    environment:
      POSTGRES_PASSWORD: kesha
      POSTGRES_DB: cocodb
      POSTGRES_USER: coco
    healthcheck:
      test: pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB
      interval: 5s
      timeout: 10s
      retries: 5
      start_period: 10s
volumes:
  postgres_data:
  index_db:
  media:






Originally created by @derToaster1412 on GitHub (Aug 8, 2024). Original GitHub issue: https://github.com/ciur/papermerge/issues/622 Originally assigned to: @ciur on GitHub. Hey ciur, thank you for this amazing project ! Maybe im too simple to understand but im trying to set papermerge up and create a folder which will be used by my scanner to upload scanned files into papermerge. I saw that there is an Importer functionality in the 2.0 version but I cannot find it in the 3.x versions. Am I missing something ? thanks again for the help cheers Installed via docker compose ```version: "3.9" x-backend: &common image: papermerge/papermerge:3.2 environment: PAPERMERGE__SECURITY__SECRET_KEY: 12345 PAPERMERGE__AUTH__USERNAME: admin PAPERMERGE__AUTH__PASSWORD: admin PAPERMERGE__DATABASE__URL: postgresql://coco:kesha@db:5432/cocodb PAPERMERGE__REDIS__URL: redis://redis:6379/0 volumes: - index_db:/core_app/index_db - media:/core_app/media services: web: <<: *common ports: - "12000:80" depends_on: db: condition: service_healthy redis: condition: service_healthy worker: <<: *common command: worker redis: image: redis:6 healthcheck: test: redis-cli --raw incr ping interval: 5s timeout: 10s retries: 5 start_period: 10s db: image: postgres:16.1 volumes: - postgres_data:/var/lib/postgresql/data/ environment: POSTGRES_PASSWORD: kesha POSTGRES_DB: cocodb POSTGRES_USER: coco healthcheck: test: pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB interval: 5s timeout: 10s retries: 5 start_period: 10s volumes: postgres_data: index_db: media:
Author
Owner

@ciur commented on GitHub (Aug 12, 2024):

Importer for 3.2: https://docs.papermerge.io/3.2/cli/cli/#import

<!-- gh-comment-id:2284254778 --> @ciur commented on GitHub (Aug 12, 2024): Importer for 3.2: https://docs.papermerge.io/3.2/cli/cli/#import
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/papermerge#489
No description provided.