I hereby claim:
- I am philippbosch on github.
- I am philippbosch (https://keybase.io/philippbosch) on keybase.
- I have a public key whose fingerprint is 9BCE E011 6753 E7FD 928D F104 30C4 4A80 A8D2 4676
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
export PATH=$PATH:/usr/local/bin | |
COUNT=$(curl -s -H 'Authorization: bearer <TOKEN>' -X POST -d '{"query": "{search(query: \"is:pr is:open archived:false sort:updated-desc review-requested:philippbosch\", type: ISSUE, first: 10){issueCount}}"}' https://api.github.com/graphql | jq .data.search.issueCount) | |
if [ "$COUNT" -ne "0" ] ; then | |
echo "$COUNT ⎇|color=#ff9900 size=12 href=https://github.com/pulls?q=is%3Apr+is%3Aopen+archived%3Afalse+sort%3Aupdated-desc+review-requested%3Aphilippbosch" | |
fi |
FROM python:3.7 | |
ENV PYTHONUNBUFFERED 1 | |
ENV WERKZEUG_DEBUG_PIN off | |
ENV DJANGO_SETTINGS_MODULE myproject.settings.dev | |
RUN apt-get update && \ | |
apt-get install -y gettext postgresql-client libpq-dev \ | |
--no-install-recommends && rm -rf /var/lib/apt/lists/* | |
RUN mkdir /code | |
COPY requirements.txt requirements-dev.txt /code/ | |
RUN pip install -r /code/requirements-dev.txt |