Skip to content

Instantly share code, notes, and snippets.

@epost
Last active August 29, 2015 14:01
Show Gist options
  • Save epost/ac561174021c6be5d88f to your computer and use it in GitHub Desktop.
Save epost/ac561174021c6be5d88f to your computer and use it in GitHub Desktop.
Getting started with PureScript template projects
# 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