Hello, I want to develop a web in c++ but it is a pain to setup, it really feels like every step in linux environment requires phd from linux, that is why I decided to try to find an expert for that.
The goal:
Alter this repostory
https://github.com/kovarex/cppgorating
So it:
1) Can compile and work on windows MSVC, also all the libs are statically linked, no dll requirements. (I got lib_crypto.lib, and libssl.lib in their static linked forms, but unfortunatelly, it wasn't enough as the mysqlcppconn-static.lib is static, but still requires lib crypto and ssl to be linked dynamically, so these would have to be also build from source).
2) The same code can be compiled and work on linux, so it can run on the actual web server.
3) The code needs to be deployable on the nearlyfreespeech.com hosting, which has limitations of not being able to install any libraries other than those present, so asio for example has to be part of the repository and compiled on the spot.
I was planning to use the CrowCpp library for the web itself, together with the mysql C++ connector library, but if there is some library which is good enough and easy to setup, it can be changed.
... Show more