Are you making static file changes? (js, css, etc.) you may need to run collectstatic code example
Example: https://docs.djangoproject.com/en/2.0/howto/static-files/
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]