Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Importer Folder #622

Open
derToaster1412 opened this issue Aug 8, 2024 · 1 comment
Open

Importer Folder #622

derToaster1412 opened this issue Aug 8, 2024 · 1 comment
Assignees
Labels
enhancement New feature or request feature request

Comments

@derToaster1412
Copy link

derToaster1412 commented Aug 8, 2024

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:






@ciur
Copy link
Owner

ciur commented Aug 12, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request feature request
Projects
None yet
Development

No branches or pull requests

2 participants