A search interface for data from the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office API. https://patents.copim.ac.uk
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

README.md 2.6KB

3 lat temu
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Archival Conversations patents data search engine
  2. This repository contains the Docker Compose, Nginx, PHP, and Solr config files for deploying the development environment for the Archival Conversations patents data search engine site.
  3. ## to deploy environment
  4. ### config.env
  5. To deploy this environment, first copy config.env.template to a new file, config.env. Fill in the appropriate environment variables.
  6. Note that on Mac the PHP container has to communicate with the Solr container using the hostname 'host.docker.internal' rather than 'localhost' or '127.0.0.1': https://stackoverflow.com/questions/24319662/from-inside-of-a-docker-container-how-do-i-connect-to-the-localhost-of-the-mach
  7. On Linux, you can use the container name e.g. 'solr' as the Solr hostname in config.env.
  8. ### Docker Compose
  9. In the command line, navigate to the directory where this repository is stored on your local machine and run:
  10. `docker-compose up -d --build`
  11. Docker should build the application environment comprising a PHP container (including ImageMagick), an Apache Solr container (deployed Solr for .rtf indexing using instructions at: https://github.com/docker-solr/docker-solr), and an Nginx web server to serve the website.
  12. The website should then be available in the browser at 'localhost:8080'.
  13. To take down the environment, run:
  14. `docker-compose down`
  15. ## populating Apache Solr
  16. In order to fill the site with documents, you will have to populate the Apache Solr search engine. There is a solr_import.sh script to help with this. Place whatever files you want indexed in a directory called 'data' within the main directory.
  17. In solr_import.sh, change the directory to point to the main directory and, if necessary, change the location parameters for the various cores.
  18. We use different Solr cores for the different themes on the site: 'all' is a core containing all documents while 'active', 'expanding', etc. contain only documents for that theme.
  19. ### legacy Solr commands
  20. This section should be fully superseded by solr_import.sh and including the Solr config in the repository. These are left here for reference.
  21. Created core using:
  22. `docker exec -it solr solr create_core -c epo_data`
  23. Note this fix to ensure that .rtf files can be indexed using Apache Tika: https://gitmemory.com/issue/docker-solr/docker-solr/341/682877640. Once you've created the core, run these commands:
  24. `docker exec -ti --user=solr solr bash -c 'cp -r /opt/solr/example/files/conf/* /var/solr/data/{CORE_NAME}/conf/'`
  25. `docker restart solr`
  26. Add files to Solr using:
  27. `docker run --rm -v "/Users/ad7588/Downloads/2018 (10381):/2018" --network=host solr:latest post -c epo_data /2018`