Compare commits
2 Commits
2409ec8f5a
...
42295e5550
Author | SHA1 | Date |
---|---|---|
Tiago Garcia | 42295e5550 | |
Tiago Garcia | d514ea5aab |
|
@ -1,15 +1,15 @@
|
|||
# CMake build directories
|
||||
/build*/
|
||||
/CMakeFiles/
|
||||
/CMakeCache.txt
|
||||
/cmake_install.cmake
|
||||
/*.cmake
|
||||
/*.cbp
|
||||
/*.layout
|
||||
/*.stackdump
|
||||
/CPackConfig.cmake
|
||||
/Makefile
|
||||
/CTestTestfile.cmake
|
||||
CMakeFiles/
|
||||
CMakeCache.txt
|
||||
cmake_install.cmake
|
||||
*.cmake
|
||||
*.cbp
|
||||
*.layout
|
||||
*.stackdump
|
||||
CPackConfig.cmake
|
||||
Makefile
|
||||
CTestTestfile.cmake
|
||||
install_manifest.txt
|
||||
|
||||
# Compiled binaries
|
||||
/bin/
|
||||
|
|
|
@ -49,7 +49,7 @@ set_target_properties(${EXECUTABLE_NAME} PROPERTIES LINK_FLAGS
|
|||
set(SERVICE_EXECUTABLE "/services/gh-wh-handler/${EXECUTABLE_NAME}")
|
||||
set(SERVICE_CONFIG "/services/gh-wh-handler/config.json")
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/gh-wh-handler.service.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/gh-wh-handler.service.in"
|
||||
"${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/gh-wh-handler.service"
|
||||
@ONLY)
|
||||
install(CODE "file(MAKE_DIRECTORY /services/gh-wh-handler)")
|
||||
|
@ -65,7 +65,7 @@ install(CODE "execute_process(COMMAND systemctl start gh-wh-handler)")
|
|||
|
||||
if(NOT TARGET uninstall)
|
||||
configure_file(
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/uninstall.cmake.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake.in"
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake" IMMEDIATE @ONLY)
|
||||
add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake)
|
||||
endif()
|
||||
|
|
|
@ -8,6 +8,17 @@ Routes::Routes(nlohmann::json config) {
|
|||
const nlohmann::json config_run_scripts = config["run-scripts"];
|
||||
const nlohmann::json config_tokens = config["tokens"];
|
||||
|
||||
CROW_ROUTE(this->app, "/")
|
||||
.methods("POST"_method)
|
||||
.name("Ping")
|
||||
([]() {
|
||||
nlohmann::json response = {
|
||||
{"status", 200},
|
||||
{"message", "Pong"}
|
||||
};
|
||||
return crow::response(200, response.dump());
|
||||
});
|
||||
|
||||
CROW_ROUTE(this->app, "/update-files")
|
||||
.methods("POST"_method)
|
||||
.name("Update Files")
|
||||
|
|
Loading…
Reference in New Issue