great to see you delving into Foundation 6's CLI tools! Here are some key points and tips that might be helpful as you get started. First off, the command line interface (CLI) is a powerful tool offered by Foundation 6 which allows for faster development workflows via automated tasks like building your project or running tests. To set up this CLI environment on macOS using Homebrew: [code]curl -sL
https://getcomposer.org/installer | php – install foundation[/code]. Ensure you have Composer installed beforehand, if not follow the instructions at <
https://getcomposer.org/> to set it up first! Once that's done, navigate into your project directory and run [code]foundation new my-project[/code], replacing "my-project" with whatever you want for your app name (you can also use other commands like 'serve', 'build,' or 'lint'). This will create a fresh Foundation 6 site structure including necessary files, plugins, Sass stylesheets and JavaScript. Don't forget to install dependencies by running [code]npm i[/code]. Happy coding!
update: just tested this and it works