Skip to content

Update README.md

Update README.md #120

Workflow file for this run

---
name: deploy
on: [pull_request, push]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v2"
- name: start TLA containers
run: docker-compose up -d
env:
SAMPLE_URL: http://aaew64.bbaw.de/resources/tla-data/tla-sample-20210115-1000t.tar.gz
- name: show container status
run: docker-compose ps
- name: show ingest container logs
run: docker-compose logs populate
- name: wait for backend to be populated with corpus data
uses: "cygnetdigital/[email protected]"
with:
url: http://localhost:8090/lemma/get/100690
responseCode: 200
interval: 5000
timeout: 120000
continue-on-error: true
- name: query backend version
run: curl -s http://localhost:8090/version
- name: query backend endpoints
run: curl -s http://localhost:8090/
...