Last active
August 29, 2015 14:01
-
-
Save epost/ac561174021c6be5d88f to your computer and use it in GitHub Desktop.
Getting started with PureScript template projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install some tools we'll need | |
npm install -g grunt grunt-init bower | |
# install a PureScript project template for use with grunt-init | |
mkdir ~/.grunt-init | |
git clone https://github.com/purescript-contrib/grunt-init-purescript.git ~/.grunt-init/purescript | |
# create a PureScript project from the template and fetch its dependencies | |
mkdir /path/to/your_ps_project | |
cd /path/to/your_ps_project | |
grunt-init purescript | |
# install your project's dependencies | |
npm install | |
bower update | |
# build | |
grunt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment