作者:奇客设计 | 来源:互联网 | 2023-09-15 18:09
我正在docker本地运行COOKIEcutter-django。我该如何编译Sass?
我通过执行$ docker-compose --file local.yml up
运行该应用程序。当我编辑源代码模板文件时,Web应用程序会在http://localhost:8000
反映这些更改。
当我编辑static/sass/project.scss
时,该网站未获得新的CSS规则。
我尝试运行$ docker-compose --file local.yml run --rm npm install
,但收到消息ERROR: No such service: npm
。
可能有用的资源:
-
https://COOKIEcutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html
-
https://COOKIEcutter-django.readthedocs.io/en/latest/deployment-with-docker.html#building-running-production-stack
服务名称(来自docker-compose文件为node
。
该命令应为$ docker-compose --file local.yml run --rm node npm install