| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2019-09-20 | Use DockerV2 task. | -14/+9 | ||
| 2019-09-20 | Remove EXTRAS ARG as pip extras isn't used anymore. | -2/+0 | ||
| 2019-09-18 | Nuke `pysite.dockerapp`. | -42/+0 | ||
| 2019-09-18 | Add PIP and PIPENV Environmental Variables to production Dockerfile | -0/+4 | ||
| 2019-09-18 | Add PIP and PIPENV Environmental Variables | -0/+4 | ||
| 2019-09-18 | Refine Dockerfiles | -84/+31 | ||
| 2019-09-16 | Add test cases for `TypeError` fallbacks. | -0/+33 | ||
| 2019-09-15 | Fix a bug where GitHub API rate limit could crash Home. | -17/+34 | ||
| The bug was caused by a naive approach to caching and retrieving the data. This commit rectifies this by making the following changes: - We will now cache for 1 hour instead of 10 minutes - If the data is stale but API is rate limited, return cache, not crash. - If the cache doesn't exist and API is rate limited, return dummy data, and try again in 10 minutes. This will prevent all crashes, and should still have more or less the same user experience. | ||||
| 2019-09-15 | PARENT_HOST is now pythondiscord.com | -1/+1 | ||
| 2019-09-15 | Remove wiki, add pydis. | -2/+4 | ||
| 2019-09-15 | Darcula theme, and vanilla hosts. | -2/+93 | ||
| 2019-09-15 | Changing the ALLOWED_HOSTS to allow for migration. | -2/+2 | ||
| Adding django.pythondiscord.com and django.api.pythondiscord.com to ALLOWED_HOSTS to allow us to run Djangoify and migrate the infraction data. | ||||
| 2019-09-15 | Update `ALLOWED_HOSTS` for the new home. | -3/+2 | ||
| 2019-09-15 | Drop args to reduce line size under 100. | -1/+3 | ||
| 2019-09-15 | Tag Django images as `latest`. | -2/+2 | ||
| 2019-09-15 | Adding a pygments CSS for syntax highlighting. | -1/+75 | ||
| This adds the Monokai, Friendly, and Darcula themes to this repo. It leaves Darcula as the active theme. This can very easily be changed later on by altering wiki/base.html Resolves #243. | ||||
| 2019-09-14 | Adding the UpdateModelMixin to the ReminderViewSet. | -2/+3 | ||
| This will allow us to edit durations using the PATCH method, which the bot implements already but which was overlooked when this viewset was written. | ||||
| 2019-09-12 | Check for missing migrations in CI. | -0/+1 | ||