ruby - Dashing dashboard won't display on Windows -
i ran following:
dashing new project cd project bundle install && dashing start
it listed "using" output , began server. output here.
visiting localhost:3030
resulted in plain grey web page nothing on text try this: curl -d '{ "auth_token": "your_auth_token", "text": "hey, can do!" }' \http://localhost:3030/widgets/welcome
@ top of page. page's generated source code here.
running curl command, modified work on windows, seemed if worked, changed nothing on grey webpage.
curl -x post -h "content-type: application/json" -d "{ \"auth_token\": \"your_auth_token\", \"text\": \"hey, can do!\" }" http://localhost:3030/widgets/welcome
the console running server showed following:
127.0.0.1 - - [02/jun/2015 11:55:58] "post /widgets/welcome http/1.1" 204 - 0.0000
i figured out. must have node.js or kind of javascript engine installed.
Comments
Post a Comment