diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index ba56d350..00000000 --- a/.coveragerc +++ /dev/null @@ -1,7 +0,0 @@ -[run] -source = - variant/ - tests/ -omit = - setup.py - docs/* \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d15f4c3c..00000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -# A simple container for variant-service. -# Runs service on port 80. -# Healthchecks service up every 5m. - -FROM python:3.7 -RUN apt update ; apt install -y rsync -RUN pip install pipenv uvicorn[standard] -COPY . /app -WORKDIR /app -RUN if [ ! -f "Pipfile.lock" ] ; then pipenv lock ; else echo Pipfile.lock exists ; fi -RUN pipenv sync -EXPOSE 80 -HEALTHCHECK --interval=5m --timeout=3s \ - CMD curl -f http://localhost/variation || exit 1 - -CMD pipenv run uvicorn variation.main:app --port 80 --host 0.0.0.0 diff --git a/biomart.png b/biomart.png deleted file mode 100644 index e2f3e1f8..00000000 Binary files a/biomart.png and /dev/null differ diff --git a/cron.yaml b/cron.yaml deleted file mode 100644 index 675190d5..00000000 --- a/cron.yaml +++ /dev/null @@ -1,5 +0,0 @@ -version: 1 -cron: - - name: "task1" - url: "/scheduled" - schedule: "* * * * *"