summaryrefslogtreecommitdiffstats
path: root/src/config.hpp
blob: 7533b60b6c3bca83c5178753daf79253da966008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef WANTCHATCONFIG_H
#define WANTCHATCONFIG_H

// config for work in localhost:
const char *SERVER_IP = "127.0.0.1";
const int SERVER_PORT = 3030;

const char *DATABASE_HOST = "localhost";
const char *DATABASE_USER = "admin";
const char *DATABASE_PASSWD = "admin";
const char *DATABASE_DB = "wantchat";
const unsigned int DATABASE_PORT = 3306; // standard mariadb port

#endif