From 9e5b7d39e3b8be9f4ad537a134b1081564ae4abc Mon Sep 17 00:00:00 2001 From: Udo Schroeter Date: Fri, 11 Feb 2022 11:22:04 +0100 Subject: [PATCH] Basic readme --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 601850e..a975ea0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # uce -Udo's C++ Entry Points \ No newline at end of file +## Current State + +This is in the early stages of development. Don't use this for anything important (or at all)! + +## Udo's C++ Entry Points + +The aim of this project is to make a PHP-like runtime that enables server-side "scripting" using C/C++. At the core is a multi-worker FastCGI server that can be talked to from Nginx or similar front-end servers. UCE has a shared-nothing isolated architecture to serve page requests. To minimize the potential for memory leaks, UCE uses a per-request memory arena. UCE also provides a PHP-like API to ease web development. Advanced features such as an integrated WebSockets broker are planned. UCE aims to use minimal dependencies (at the moment, the only dependency is the Clang compiler). + +