start.sh 388 B

123456
  1. #!/bin/sh
  2. erl -pa ebin deps/*/ebin -s rest_pastebin \
  3. -eval "io:format(\"Upload: echo foo | curl -i --data-urlencode paste@- localhost:8080~n\")." \
  4. -eval "io:format(\"Get: curl <value of the location header>~n\")." \
  5. -eval "io:format(\"Get with highlighting: curl <location>?lang=<language>~n\")." \
  6. -eval "io:format(\"To get html, point your browser to http://localhost:8080~n\")."