3

您好我正在尝试使用 django-compressor 的预编译器将基础 scss 集成到 django 中,该项目如下所示:

├── manage.py
├── requirements.txt
├── static
│   ├── config.rb
│   ├── humans.txt
│   ├── index.html
│   ├── javascripts
│   │   ├── foundation
│   │   │   ├── foundation.alerts.js
│   │   │   ├── foundation.clearing.js
│   │   │   ├── foundation.cookie.js
│   │   │   ├── foundation.dropdown.js
│   │   │   ├── foundation.forms.js
│   │   │   ├── foundation.joyride.js
│   │   │   ├── foundation.js
│   │   │   ├── foundation.magellan.js
│   │   │   ├── foundation.orbit.js
│   │   │   ├── foundation.placeholder.js
│   │   │   ├── foundation.reveal.js
│   │   │   ├── foundation.section.js
│   │   │   ├── foundation.tooltips.js
│   │   │   └── foundation.topbar.js
│   │   └── vendor
│   │       ├── custom.modernizr.js
│   │       ├── jquery.js
│   │       └── zepto.js
│   ├── MIT-LICENSE.txt
│   ├── robots.txt
│   ├── sass
│   │   ├── app.scss
│   │   ├── normalize.scss
│   │   └── _settings.scss
│   └── stylesheets
│       ├── app.css
│       └── normalize.css
├── templates
│   ├── 404.html
│   ├── 500.html
│   ├── admin
│   │   └── base_site.html
│   └── base.html
└── weddings
    ├── __init__.py
    ├── __init__.pyc
    ├── local_settings.py
    ├── local_settings.pyc
    ├── settings.py
    ├── settings.pyc
    ├── urls.py
    ├── urls.pyc
    └── wsgi.py

并且预编译器在 settings.py 中看起来像这样

COMPRESS_PRECOMPILERS = (
    ('text/x-scss', 'sass --scss --compass {infile} {outfile}'),
)

当我使用 nginx + uwsgi 运行它时,出现以下错误:

Syntax error: File to import not found or unreadable: foundation/foundation-global.
              Load paths:
                /etc/uwsgi/vassals
                /etc/uwsgi/vassals/sass
                /srv/www/weddings/gems/compass-0.12.2/frameworks/blueprint/stylesheets
                /srv/www/weddings/gems/compass-0.12.2/frameworks/compass/stylesheets
                Compass::SpriteImporter
                /srv/www/weddings/gems/bourbon-3.1.1/app/assets/stylesheets
                /srv/www/weddings/gems/bourbon-3.1.1/app/assets/stylesheets
        on line 2 of /srv/www/weddings/weddings/static/sass/_settings.scss
        from line 2 of /srv/www/weddings/weddings/static/sass/app.scss
  Use --trace for backtrace.

我怀疑它没有读取 config.rb 或 config.rb 中的设置错误:

http_path = "/"
css_dir = "stylesheets"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"
4

3 回答 3

5

当你有一个config.rb文件时,你就有了一个 Compass 项目。

Compass 项目应该使用compass命令行工具编译,而不是sass命令行工具。

正如您已经发现的那样,应该从项目文件夹中启动编译。但是将路径硬编码到 settings.py 是一个坏主意,因为它会使您的项目不可移植。

您应该使用os.path.dirname(os.path.realpath(__file__))来发现当前脚本的路径,而不是硬编码路径。要更改相对于 的文件夹,请像这样settings.py使用(根据需要进行调整,您可以使用):os.path.join()..

os.path.join(os.path.dirname(os.path.realpath(__file__)), "static")

此外,您PROJECT_DIRsettings.py. 用它来使这条线更干净。

于 2013-03-23T21:57:47.670 回答
1

对@James Lin 的一点改进

COMPRESS_PRECOMPILERS = (
    # ('text/x-scss', 'django_libsass.SassCompiler'),
    # ('text/x-scss', 'sass --scss {infile} {outfile}'),
    ('text/x-scss', 'sass --scss --compass {infile} {outfile}'),
)
于 2014-06-28T17:15:57.733 回答
0

我目前的工作是在 ocnfig.rb 所在的文件夹中运行 sass 命令

COMPRESS_PRECOMPILERS = (
    ('text/x-scss', 'cd /srv/www/project/name/static && sass --scss --compass {infile} {outfile}'),
)
于 2013-03-21T22:46:40.823 回答