Skip to content

Commit

Permalink
Merge pull request #333 from brickbox-io/justin
Browse files Browse the repository at this point in the history
Justin
  • Loading branch information
justinmerrell authored Apr 1, 2022
2 parents f9f1064 + b3508d7 commit ff313de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion brickbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@

STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.ManifestStaticFilesStorage'

STATIC_URL = '/static/' # Refrenced via HTML
STATIC_URL = 'static/' # Refrenced via HTML

STATIC_ROOT = '/var/www/brickbox/static/' # Directory/Path where static files will be located

Expand All @@ -249,6 +249,9 @@
'compressor.finders.CompressorFinder',
)

# Handing SCSS https://www.accordbox.com/blog/how-use-scss-sass-your-django-project-python-way/
# COMPRESS_PRECOMPILERS = ( ('text/x-scss', 'django_libsass.SassCompiler'),)

# ----------------------------------- Media ---------------------------------- #
MEDIA_URL = '/media/'

Expand Down
3 changes: 3 additions & 0 deletions puller/scripts/continuous_deployment.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
# shellcheck disable=SC1091,SC2086


# ---------------------------------------------------------------------------- #
# Pulls Updates #
Expand All @@ -16,6 +18,7 @@ sudo apt-get update -y && sudo apt-get upgrade -y &
# ---------------------------------------------------------------------------- #
# Update Packages #
# ---------------------------------------------------------------------------- #
. /opt/brickbox/bbenv/bin/activate

# PIP
python3 -m pip install --upgrade pip
Expand Down

0 comments on commit ff313de

Please sign in to comment.