Skip to content

Commit

Permalink
upgrade wagtail-color-panel==1.4.0 to wagtail-color-panel==1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace-Amondi committed Jun 12, 2023
1 parent 6a7b010 commit 33804ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified nmhs_cms/settings/__pycache__/base.cpython-39.pyc
Binary file not shown.
6 changes: 3 additions & 3 deletions nmhs_cms/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,12 +327,12 @@
# JavaScript / CSS assets being served from cache (e.g. after a Wagtail upgrade).
# See https://docs.djangoproject.com/en/4.0/ref/contrib/staticfiles/#manifeststaticfilesstorage
# STATICFILES_STORAGE = "django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
BASE_PATH = os.getenv("BASE_PATH", '/')
BASE_PATH = os.getenv("BASE_PATH", '')
STATIC_ROOT = os.path.join(BASE_DIR, "static")
STATIC_URL ="/"+ BASE_PATH+ "static/"
STATIC_URL = BASE_PATH+ "/static/"

MEDIA_ROOT = os.path.join(BASE_DIR, "media")
MEDIA_URL = "/"+ BASE_PATH + "media/"
MEDIA_URL = BASE_PATH + "/media/"


# Wagtail settings
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ shapely>=2.0.1
wagtail==4.2.3
wagtail-adminsortable @ https://github.com/Lh4cKg/wagtail-admin-sortable/archive/baa0d1f13a6bca4cc60e0d7dcd0522ecafcf5d67.zip#sha256=ab6ea62b180659f56330397e97e9fcc2769dd10801f52fd259bc3175d77e27b7
wagtail-cache==2.2.0
wagtail-color-panel==1.4.0
wagtail-color-panel==1.4.1
wagtail-django-recaptcha==1.0
wagtail-font-awesome-svg==0.0.3
wagtail-lazyimages==0.1.5
Expand Down

0 comments on commit 33804ad

Please sign in to comment.