diff options
author | Loïc Hoguin <[email protected]> | 2013-02-07 18:34:49 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-02-07 18:37:15 +0100 |
commit | efbd9133261e1aabf473f2f6f5ab4cbb36062481 (patch) | |
tree | 1b2855534b20c59208edd82be61ae3aa738a0141 /examples/rest_pastebin/README.md | |
parent | cb15243d8b91458f1c5e2a7e0c664f7b76f593ad (diff) | |
parent | d7b83db92ea6b6a0022c7d19c252037197fc28c4 (diff) | |
download | cowboy-efbd9133261e1aabf473f2f6f5ab4cbb36062481.tar.gz cowboy-efbd9133261e1aabf473f2f6f5ab4cbb36062481.tar.bz2 cowboy-efbd9133261e1aabf473f2f6f5ab4cbb36062481.zip |
Merge branch 'add_rest_example' of git://github.com/acammack/cowboy
Diffstat (limited to 'examples/rest_pastebin/README.md')
-rw-r--r-- | examples/rest_pastebin/README.md | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/examples/rest_pastebin/README.md b/examples/rest_pastebin/README.md new file mode 100644 index 0000000..0e9d9b5 --- /dev/null +++ b/examples/rest_pastebin/README.md @@ -0,0 +1,52 @@ +Cowboy Rest Hello World +======================= + +To compile this example you need rebar in your PATH. + +Type the following command: +``` +$ rebar get-deps compile +``` + +You can then start the Erlang node with the following command: +``` +./start.sh +``` + +Then run any given command or point your browser to the indicated URL. + +Examples +-------- + +To upload something to the paste application, you can use curl like: +``` +<command> | curl -i --data-urlencode paste@- localhost:8080 +``` +or to upload my_file: +``` +curl -i --data-urlencode paste@my_file localhost:8080 +``` + +The URL of your data will be in the location header. Alternately, you can visit +http://localhost:8080 with your favorite web browser and submit your paste via +the form. + +Code that has been pasted can be highlighted with ?lang=<language> option if +you have [highlight](http://www.andre-simon.de/doku/highlight/en/highlight.html) +installed (although pygments or any other should work just fine). For example: +``` +curl -i --data-urlencode paste@priv/index.html localhost:8080 +curl <url from location header> +``` + +Will show the text of the html file. If your terminal supports color +sequences and highlight is installed: +``` +curl <url from location header>?lang=html +``` + +Will show a syntax highlighted version of the source file. If you open the +same URL in your web browser and your web browser tells cowboy that it prefers +html files, you will see the file highlighted with html/css markup. Firefox is +known to work. + |