- The PCRE flavour of RegEx is used here.
- Append the
imodifier to the end of the regex to make any pattern case-insensitive.
| Purpose | Description | RegEx | Example |
| # Pull base image | |
| FROM python:3.8 | |
| # Set environment variables | |
| ENV PYTHONDONTWRITEBYTECODE 1 | |
| ENV PYTHONUNBUFFERED 1 | |
| # Set work directory | |
| WORKDIR /code |
| from bot.views import bot | |
| from django.urls import path | |
| urlpatterns = [ | |
| path('ANY-RANDOM-LINK/', bot, name="bot"), | |
| ] |