Add docker file for running on server.

This commit is contained in:
douwe
2025-08-06 02:21:02 +02:00
parent 357d2d48bc
commit 44530f3287
7 changed files with 143 additions and 14 deletions

View File

@@ -6,16 +6,17 @@
namespace Douwco {
class Server {
private:
static constexpr int port = 8888;
crow::SimpleApp crowApp;
public:
Server() = default;
~Server() = default;
void setup();
void start();
private:
static constexpr int port = 8080;
crow::SimpleApp crowApp;
};
}