kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit c6dbf16b6572121c11ba0b7a0359c3e68c5aa0bb
parent f8accef3f71f8b5c04e30abcb8dc0c2aba327a72
Author: Frederic Cambus <fred@statdns.com>
Date:   Fri, 15 Nov 2019 22:39:27 +0100

Account for the change from 'static' to 'route' in the CLI tool as well.

Diffstat:
src/cli.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/cli.c b/src/cli.c @@ -295,7 +295,7 @@ static const char *config_data = "\tcertfile\tcert/server.pem\n" "\tcertkey\t\tcert/key.pem\n" "\n" - "\tstatic\t/\tpage\n" + "\troute\t/\tpage\n" "}\n"; static const char *build_data = @@ -344,7 +344,7 @@ static const char *python_config_data = "\tcertfile\tcert/server.pem\n" "\tcertkey\t\tcert/key.pem\n" "\n" - "\tstatic\t/\tkoreapp.index\n" + "\troute\t/\tkoreapp.index\n" "}\n"; static const char *python_init_data =