Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.43 KB

README.md

File metadata and controls

37 lines (25 loc) · 1.43 KB

istex-dl

Docker Pulls

Istex-dl is a web application dedicated to ISTEX sub-corpus extraction. It makes possible to download several ISTEX documents easily in a ZIP file using a web interface.

Prerequisites

  • For debug mode: nodejs >= 8
  • For production mode: docker & docker-compose or ezmaster

Run in debug mode

git clone [email protected]:istex/istex-dl.git && cd istex-dl
npm install
cd www/ && npm install
cd .. && npm start

Then istex-dl is listening at this URL: http://127.0.0.1:3000

Run in production mode

Istex-dl is ezmaterized so you just have to deploy the latest istex-dl docker image with ezmaster.

Or if you do not use ezmaste, you can deploy istex-dl thanks to the docker-compose.yml dedicated to production this way:

curl https://raw.githubusercontent.com/istex/istex-dl/master/docker-compose.yml > docker-compose.istex-dl.yml
docker-compose -f docker-compose.istex-dl.yml up -d

Then istex-dl is listening at this URL: http://127.0.0.1:45445 (replace 127.0.0.1 by your server hostname)