diff options
author | Jesús <heckyel@hyperbola.info> | 2022-02-23 02:57:18 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-02-23 02:57:18 +0800 |
commit | 3e92b492a4f172aeb45cef51b4d63f2618260856 (patch) | |
tree | 2691dd7b8cd4602a2dffdb9025b8050e580d8d07 /django | |
parent | b25bb542c966188a2db60d406de2bb2dba24d9a7 (diff) | |
download | personal-site-3e92b492a4f172aeb45cef51b4d63f2618260856.tar.lz personal-site-3e92b492a4f172aeb45cef51b4d63f2618260856.tar.xz personal-site-3e92b492a4f172aeb45cef51b4d63f2618260856.zip |
No use `make` for compile css
Diffstat (limited to 'django')
-rw-r--r-- | django/entrypoint.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/entrypoint.sh b/django/entrypoint.sh index 425bac1..02eaa54 100644 --- a/django/entrypoint.sh +++ b/django/entrypoint.sh @@ -152,7 +152,8 @@ EMAIL_USE_TLS = ${EMAIL_USE_TLS:-True} EOF fi -cd /srv/app/core/static/core && make +mkdir -p /srv/app/core/static/core/css || true +sassc -t compressed /srv/app/core/static/core/sass/estilos.sass /srv/app/core/static/core/css/estilos.min.css cd /srv/app || exit /usr/local/bin/python3 manage.py makemigrations --no-input /usr/local/bin/python3 manage.py migrate --no-input |