Web based IDE
Checkout and install webida-server
Then, checkout this repository.
And send deploy request to the webida-server with access_token($TOKEN
).
$cd webida-client
$tar czpf - * | curl -k -X POST -F content=@- "http://webida.mine:5001/webida/api/app/deploy?appid=webida-client&access_token=$TOKEN"
you can find $TOKEN
at the server's initial DB data.
$ mongo
> use webida_auth
> db.tokens.find({uid: 100000}, {token: 1, _id: 0})
{ "token" : "thisIsATokenString" } # this is the $TOKEN
Now you can access client app with the below url address.