ImSQL
C++ 기반 SQL 자동화 및 라이선스 관리 엔진
Loading...
Searching...
No Matches
engine_config.hpp
Go to the documentation of this file.
1
10#pragma once
11
12#include <string>
13
14namespace utils {
15
22 int api_port{};
24 std::string local_sql_url;
25 std::string db_dir;
26 bool debug{};
27 std::string license;
28 std::string public_key_path;
29};
30
39
40} // namespace utils // end of EngineConfig
엔진 공통 설정을 저장하는 구조체.
Definition engine_config.hpp:21
std::string local_sql_url
로컬 SQL 접속 URL
Definition engine_config.hpp:24
bool debug
디버그 모드 활성화 여부
Definition engine_config.hpp:26
std::string license
라이선스 파일 경로
Definition engine_config.hpp:27
int local_sql_port
로컬 SQL 서버 포트 번호
Definition engine_config.hpp:23
std::string public_key_path
공개키 파일 경로 (선택적)
Definition engine_config.hpp:28
std::string db_dir
데이터베이스 파일 저장 디렉토리
Definition engine_config.hpp:25
int api_port
API 서버 포트 번호
Definition engine_config.hpp:22
엔진 전체 설정을 저장하는 구조체.
Definition engine_config.hpp:36
EngineCommonConfig common
공통 설정
Definition engine_config.hpp:37