mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-21 13:59:41 +00:00
15 lines
348 B
C
15 lines
348 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define LOCAL_SNAKE_SERVER "127.0.0.1"
|
|
|
|
#define DEFAULT_PORT 3090
|
|
|
|
|
|
#define DEFAULT_DB_NAME "QtNetworkDB"
|
|
#define DEFAULT_DB_PATH QDir::homePath() + "/QtNetwork/" + DEFAULT_DB_NAME
|
|
#define DEFAULT_DB_INIT_FILE_PATH ":/sql/default"
|
|
#define DEFAULT_UPDATE_INTERVAL 3600000 // 1 hour
|
|
|
|
#endif // CONFIG_H
|