vdmitriyev / orcidtohtml

Webapp to convert BibTeX (ORCID based) to HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

A webapp to convert BibTeX (from the ORCID) into a HTML.

Install using Docker

  • Clone repo
     git clone https://github.com/vdmitriyev/orcidtohtml.git
  • Go to folder
     cd orcidtohtml
    
  • Build Docker image
     docker build -t orcidtohtml:latest .
    
  • Run created image
     docker run -d -p "127.0.0.1:5252:5252" --name orcidtohtml --restart unless-stopped orcidtohtml
    
  • Should run on
     localhost:5252
    

Production Deployment

Use the following nginx config to deploy the Docker Container in production

location /orcidtohtml/ {
    access_log /var/log/nginx/orcidtohtml-access.log;
    error_log /var/log/nginx/orcidtohtml-error.log;

    proxy_pass http://localhost:5252/;
    proxy_set_header Host "localhost";
}

JabRef for BibTeX to HTML Export

  • Manual on exporting BibTeX database to the HTML file with help of JabRef can be found in jabref.

License

MIT

About

Webapp to convert BibTeX (ORCID based) to HTML


Languages

Language:Python 65.7%Language:HTML 26.9%Language:TeX 3.1%Language:Batchfile 2.8%Language:Dockerfile 1.3%Language:CSS 0.3%