25 lines
690 B
C++
25 lines
690 B
C++
//
|
|
// Created by brett on 6/20/23.
|
|
//
|
|
|
|
#ifndef CROWSITE_CONFIG_H
|
|
#define CROWSITE_CONFIG_H
|
|
|
|
#include <unordered_map>
|
|
#include <blt/std/hashmap.h>
|
|
|
|
//#define CROW_STATIC_DIRECTORY "/home/brett/projects/cpp/crowsite/crow_test/static/"
|
|
#define CROW_STATIC_DIRECTORY "/home/brett/Documents/code/c++/crowsite/crow_test/static/"
|
|
//#define SITE_FILES_PATH "/home/brett/projects/cpp/crowsite/crow_test"
|
|
#define SITE_FILES_PATH "/home/brett/Documents/code/c++/crowsite/crow_test"
|
|
#define CROW_STATIC_ENDPOINT "/static/<path>"
|
|
|
|
#define MILES_SITE
|
|
#undef MILES_SITE
|
|
|
|
#define SITE_NAME "CrowTest"
|
|
#define SITE_TITLE "Miles and Brett Super Site"
|
|
#define SITE_VERSION "0.0.1"
|
|
|
|
#endif //CROWSITE_CONFIG_H
|