Ok, so far Skylark is awesome for building C++ apps with web-based interfaces.
But is it possible to run this app in a web-server like Apache for example?
I believe that all you need to do for Apache is to add
SCGIMount /my_skylark_app_name/ 127.0.0.1:4000
into
/etc/apache2/httpd.conf
then start Skylark app configured for port 4000.
Of course, in real production environment, you would likely want to do a bit more sophisticated things, like deamonizing the app and putting start/stop/restart script into init.d, if you are really serious, you will also consider packaging to automate upgrades/rollbacks etc...