Took some figuring out, but I got things running using the following (starting off with installing the parent theme):
cd my-wordpress-folder/wp-content/themes/
git clone git@github.com:olefredrik/FoundationPress.git
cd FoundationPress
npm install && bower install
cd ../
git clone git@github.com:thetrickster/FoundationPress-child.git
mv FoundationPress-child your-theme-name
cd your-theme-name
npm install && bower install
grunt
The last step is to add 'dist' to the jquery path in your-child-theme/library/enqueue-scripts.php (Foundation 5 implemented this new folder, see issue #4):
Took some figuring out, but I got things running using the following (starting off with installing the parent theme):
cd my-wordpress-folder/wp-content/themes/ git clone git@github.com:olefredrik/FoundationPress.git cd FoundationPress npm install && bower install cd ../ git clone git@github.com:thetrickster/FoundationPress-child.git mv FoundationPress-child your-theme-name cd your-theme-name npm install && bower install grunt
The last step is to add 'dist' to the jquery path in your-child-theme/library/enqueue-scripts.php (Foundation 5 implemented this new folder, see issue #4):
/js/jquery/jquery.min.js becomes: /js/jquery/dist/jquery.min.js
I believe there's an error on the third line of the 'Quickstart' instructions:
mv FoundationPress your-theme-name should be: mv FoundationPress-child your-theme-name