Documentation.

Operating System, Devops & Basic Setup Instructions

  • We develop on max os x, which is unfortunate in that the devlopment OS is not the same as the production OS
  • We server our properties from Ubuntu 20, Ubuntu 22 boxes. We use apt for package management.
  • We make extensive use of docker and git.
  • Our preferred text editor is VS Code, although we strive to be editor-agnostic, and do not treat the text editor as an IDE.
    • Exceptions to this are the Android IDE, and X Code. These are tools for building mobile applications, and we cannot avoid using them.

How to use scss (sass) with Drupal

In this article, I'm doing to talk about how I enabled my Drupal theme to have scss.

I'm on a mac, so these instructions are specifically for mac os x.

Drupal is a php framework. Sass is (somewhat surprisingly) a ruby program. While I am a ruby expert, I believe javascript is much closer to css than ruby is, so I'm expecting the scss compiler to be written in node.

In fact, this task has little to do with Drupal or PHP. We will be spending most of the time in a node environment.

Teaser Text

How to use scss (sass) with Drupal