summaryrefslogtreecommitdiffstats
path: root/src/config.hpp
blob: cbd6a57ea8414d057c8f6809dd79d076e38aa2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef WC_CONFIG_H
#define WC_CONFIG_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