mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
72 lines
1.2 KiB
C++
72 lines
1.2 KiB
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "core/application.h"
|
|
#include "core/file_cache.h"
|
|
#include "core/http_server.h"
|
|
|
|
#include "rdn_application.h"
|
|
|
|
#include "modules/message_page/message_page.h"
|
|
|
|
#include "core/database_manager.h"
|
|
|
|
#if MYSQL_PRESENT
|
|
#include "database/mysql/mysql_database.h"
|
|
#endif
|
|
|
|
#if PGSQL_PRESENT
|
|
#include "database/postgres/pgsql_database.h"
|
|
#endif
|
|
|
|
#if SQLITE_PRESENT
|
|
#include "database/sqlite/sqlite3_database.h"
|
|
#endif
|
|
|
|
#define MAIN_CLASS RDNApplication
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
#if MYSQL_PRESENT
|
|
MysqlDatabase::_register();
|
|
#endif
|
|
|
|
#if PGSQL_PRESENT
|
|
PGSQLDatabase::_register();
|
|
#endif
|
|
|
|
#if SQLITE_PRESENT
|
|
SQLite3Database::_register();
|
|
#endif
|
|
|
|
FileCache *file_cache = new FileCache(true);
|
|
file_cache->wwwroot = "./www";
|
|
file_cache->wwwroot_refresh_cache();
|
|
|
|
DatabaseManager *dbm = new DatabaseManager();
|
|
//dbm->create_database("mysql");
|
|
|
|
Application *app = new MAIN_CLASS();
|
|
|
|
app->setup_routes();
|
|
app->setup_middleware();
|
|
|
|
HTTPServer *server = new HTTPServer();
|
|
|
|
MessagePage *mp = new MessagePage();
|
|
|
|
printf("%s\n", mp->get_class().c_str());
|
|
|
|
server->port = 8080;
|
|
server->initialize();
|
|
server->main_loop();
|
|
|
|
delete server;
|
|
delete app;
|
|
delete dbm;
|
|
delete file_cache;
|
|
delete mp;
|
|
|
|
|
|
return 0;
|
|
} |