From 999566011bf240b1cbc07d3d62823e83b9cb0f91 Mon Sep 17 00:00:00 2001 From: Risto Stevcev Date: Mon, 27 Jun 2016 04:52:05 +0200 Subject: Updated README --- README.md | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/README.md b/README.md index 502b118..5fc2698 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,94 @@ Purescript build for docker :sail: ![Purescript](https://raw.githubusercontent.com/Risto-Stevcev/purescript-docker/master/logo.png) + +# usage + +Note: You may need to run docker comands as a superuser (sudo) depending on how it's configured on your system. + +Pull the version you want to use: + +``` +$ docker pull gyeh/purescript:0.8.5 +``` + +Check to see that your image was created: + +``` +$ docker images +REPOSITORY TAG IMAGE ID CREATED SIZE +gyeh/purescript 0.8.5 b09608732ec8 0 minutes ago 829.8 MB +``` + +Try the Purescript REPL (you need to run it in interactive mode with a pseudo-teletype): + +``` +$ docker run --rm -it b09608732ec8 + ____ ____ _ _ +| _ \ _ _ _ __ ___/ ___| ___ _ __(_)_ __ | |_ +| |_) | | | | '__/ _ \___ \ / __| '__| | '_ \| __| +| __/| |_| | | | __/___) | (__| | | | |_) | |_ +|_| \__,_|_| \___|____/ \___|_| |_| .__/ \__| + |_| + +:? shows help +> import Prelude +> 2 + 2 +4 + +> :t "Foo" +String + +> +See ya! +``` + +To start doing real work with it, you need to mount a volume to your docker container when you run it. +Clone the [Purescript By Example](https://leanpub.com/purescript/read) code as an initial example: + +``` +$ git clone https://github.com/paf31/purescript-book +Cloning into 'purescript-book'... +Checking connectivity... done. +``` + +Then mount the volume using the absolute path of the cloned repo to the `/home/pureuser/src` folder in the container: + +``` +$ docker run --rm -itv ~/git/purescript/tmp/purescript-book/:/home/pureuser/src b09608732ec8 bash +pureuser@1ddb0b0ed568:~$ ls +src tmp +pureuser@1ddb0b0ed568:~$ cd src/ +pureuser@1ddb0b0ed568:~/src$ ls +CONTRIBUTING.md README.md chapter11 chapter13 chapter2 chapter4 chapter6 chapter8 +LICENSE.md chapter10 chapter12 chapter14 chapter3 chapter5 chapter7 chapter9 +pureuser@1ddb0b0ed568:~/src$ cd chapter3/ +pureuser@1ddb0b0ed568:~/src/chapter3$ bower install +pureuser@1ddb0b0ed568:~/src/chapter3$ pulp build +``` + +It should have built successfully. Ignore the warnings -- as of the time of this writing the book hasn't been updated for 0.9.x module syntax that the compiler is mentioning will change. All examples should still build and work as expected. You can also run the tests: + +``` +pureuser@1ddb0b0ed568:~/src/chapter3$ pulp test +* Build successful. +* Running tests... +Nothing +Just ("Smith, John: 123 Fake St., Faketown, CA") +* Tests OK. +``` + +Since you mounted the volume, you can actually edit the code outside of the running docker instance and it will update inside the container! + +Open up `chapter3/test/Main.purs` using your favorite editor, and update `example.address.street` in the `example` record to `"123 Foobar St."`. Now rerun the tests, and you'll see that it updated! + +``` +pureuser@1ddb0b0ed568:~/src/chapter3$ pulp test +* Build successful. +* Running tests... +Nothing +Just ("Smith, John: 123 Foobar St., Faketown, CA") +* Tests OK. +``` + +This docker image creates a user called `pureuser` that it logs in as so that `bower` and `pulp` don't yell at you. If you want to add more stuff as you go along, switch to the superuser (`su`), or add pureuser to sudoers. -- cgit v1.2.3