Commit message (Collapse) | Author | Lines | ||
---|---|---|---|---|
2019-09-28 | Create custom manage.py entry point, remove scripts and merge Dockerfile. | -1/+1 | ||
2019-09-27 | Ensure docker containers are published only for master branch builds. | -1/+1 | ||
2019-09-24 | Apply suggestions from code review | -3/+3 | ||
Co-Authored-By: Mark <[email protected]> | ||||
2019-09-25 | Swap out old discord shield for new one. | -1/+1 | ||
2019-09-23 | Add relevant info shields | -0/+6 | ||
2019-09-23 | Install pipenv & pyuwsgi before copying project for better layer caching. | -2/+8 | ||
2019-09-22 | Apply suggestions from code review | -2/+2 | ||
Co-Authored-By: Mark <[email protected]> Co-Authored-By: Sebastiaan Zeeff <[email protected]> | ||||
2019-09-21 | Remove redundant off-topic names list test | -7/+0 | ||
2019-09-21 | Add test for certain unicode characters in ot names | -3/+14 | ||
2019-09-21 | Fix shell script name for whl building to reference wiki pkg. | -0/+0 | ||
2019-09-21 | Change back to official python base image, remove git pkg | -25/+18 | ||
2019-09-21 | Use a .whl for `wiki` package instead of git repo. | -35/+133 | ||
2019-09-21 | Change CI DB setup to use docker. | -19/+13 | ||
2019-09-20 | Run tests with coverage in pipenv script | -2/+3 | ||
2019-09-20 | CI: omit migrations from coverage | -1/+1 | ||
* Remove --branch option since it's already specified in .coveragerc | ||||
2019-09-20 | CI: publish XML coverage report | -2/+9 | ||
* Show missing line numbers in report | ||||
2019-09-20 | CI: minor refactoring | -9/+16 | ||
* Rename some tasks * Simplify python commands by removing python3 -m * Break up some long lines | ||||
2019-09-20 | CI: publish test results even if a task fails | -0/+1 | ||
2019-09-20 | CI: merge lint and test jobs | -25/+4 | ||
2019-09-20 | CI: consistent indentation in yml file | -90/+90 | ||
2019-09-21 | Revert uwsgi back to pip install. | -4/+6 | ||
2019-09-21 | Try with explicit buildContext | -0/+1 | ||
2019-09-20 | Line Ending Fix | -1/+5 | ||
Added .gitattributes to prevent Windows users from accidentally cloning the repo and getting incorrect line endings Also adjusting the shebang for the migrate_and_serve.sh to prevent another Windows related bug | ||||
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 | Add manage.py to linting ignore | -1/+1 | ||
Synchronize output of `pipenv run lint` and `python -m flake8` for the current project structure | ||||
2019-09-18 | Lint remaining files | -15/+19 | ||
2019-09-18 | Update linting rules & partially relint | -52/+58 | ||
2019-09-18 | Update dependencies & relock | -43/+52 | ||
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-17 | Make API return infraction list with newest first | -2/+25 | ||
The most recent infraction a user has is usually the most relevant to us. This PR aims to make our life easier by sorting the infractions by their `inserted_at` date, with the most recent insertion date first. Note: The `id` is not entirely in chronological order, because we did not import historical infractions in chronological order. That's why the `inserted_at` field is specified instead of the `id` field. | ||||
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 | ||