comunicwatcher/config.h

30 lines
455 B
C

/**
* Configuration
*
* @author Pierre Hubert
*/
#pragma once
/**
* Release configuration
*/
#ifdef QT_NO_DEBUG
// TODO : complete
#endif
/**
* Debug configuration
*/
#ifndef QT_NO_DEBUG
#define API_SERVER_SCHEME "https"
#define API_HOST "devweb.local"
#define API_BASE_PATH "/comunic/api-v2/"
#define API_SERVICE_NAME "ComunicWatcher"
#define API_SERVICE_TOKEN "ComunicWatcher"
#define COMUNIC_URL "https://devweb.local/comunic/v2/"
#endif