drogon
drogon copied to clipboard
Drogon: A C++14/17/20 based HTTP web application framework running on Linux/macOS/Unix/Windows
I Would like to have an option for easy compilation of the Drogon in my Bazel project, something like: **WORKSPACE.bazel** ``` load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "drogon", urls = ["https://github.com/drogonframework/drogon/archive/refs/heads/master.zip"],...
Like the title, currently, drogon::orm 's Model only support set value type that match with datatype of column I think we should implement overload function to auto gen models Thanks
I just pulled latest drogon and cmake refuses to build my code. **To Reproduce** Steps to reproduce the behavior: 1. Clone latest drogon 2. Compile and install 3. Create a...
Hello, **Is your feature request related to a problem? Please describe.** Is it possible to customize logger ? I feel like `drogon` is using `trantor`'s logger and we have to...
The checks whether or not the `*.br` compressed files exist are done in `StaticFileRouter::sendStaticFileResponse`, however if the original uncompressed file doesn't exist in the static file location then the request...
Hi, There is any way to know if a listener is using SSL? I can get the port and host, but not "use ssl" option from listener. ``` int32_t HttpServerImpl::getSocketPort()...
Hi. I can't get the behavior of dynamic views to work. The following has been done: 1. In the CMake file, I have commented out the line `"set_property(TARGET ${PROJECT_NAME} PROPERTY...
**Is your feature request related to a problem? Please describe.** Executing queries in `HttpFilter` specially for redis becomes messy because of the callbacks and dependency between the queries: **Describe the...
I'm getting a crash on application exit on Visual Studio 2022 compiler because drogon::HttpAppFrameworkImpl destructor is not properly cleaning up objects. It is using something that relies on EventLoop after...
Installed drogon via vcpkg. Tried compiling in both Debug & Release mode, aswell as switching C++ version between 2014 and 2017. Nothing works. These are the errors I get: ...