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 f1d33ab91b238f0dd0da96327b06b698a7ef4d7f
parent 0364cc893c1d37321b6af81f83d3fc3d14f27a52
Author: Joris Vink <joris@coders.se>
Date:   Mon,  6 Mar 2017 11:00:53 +0100

kore -> kodev where appropriate

Diffstat:
examples/cookies/README.md | 2+-
examples/cpp/README.md | 6+++---
examples/generic/README.md | 2+-
examples/headers/README.md | 2+-
examples/integers/README.md | 2+-
examples/json_yajl/README.md | 2+-
examples/jsonrpc/README.md | 2+-
examples/ktunnel/README.md | 4++--
examples/messaging/README.md | 2+-
examples/nohttp/README.md | 2+-
examples/parameters/README.md | 2+-
examples/pgsql/README.md | 2+-
examples/pipe_task/README.md | 2+-
examples/python-pgsql/README.md | 2+-
examples/python/README.md | 2+-
examples/sse/README.md | 2+-
examples/tasks/README.md | 4++--
examples/tls-proxy/README.md | 2+-
examples/video_stream/README.md | 4++--
examples/websocket/README.md | 2+-
20 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/examples/cookies/README.md b/examples/cookies/README.md @@ -6,5 +6,5 @@ This example shows cookies API usage Run: ``` - # kore run + # kodev run ``` diff --git a/examples/cpp/README.md b/examples/cpp/README.md @@ -10,15 +10,15 @@ extern “C” { ``` In order to run this example with the default C++ settings (default compiler dialect, libstdc++): ``` - # kore run + # kodev run ``` In order to run with a specific dialect and C++ runtime: ``` - # env CXXSTD=c++11 CXXLIB=c++ kore run + # env CXXSTD=c++11 CXXLIB=c++ kodev run ``` You can also supply your own compiler combined with the above: ``` - # env CC=clang++ CXXSTD=c++11 CXXLIB=c++ kore run + # env CC=clang++ CXXSTD=c++11 CXXLIB=c++ kodev run ``` diff --git a/examples/generic/README.md b/examples/generic/README.md @@ -7,5 +7,5 @@ Generic Kore application that shows off a few things: Run: ``` - # kore run + # kodev run ``` diff --git a/examples/headers/README.md b/examples/headers/README.md @@ -2,7 +2,7 @@ Example on how to read HTTP request headers and set your own custom ones. Run: ``` - # kore run + # kodev run ``` Test: diff --git a/examples/integers/README.md b/examples/integers/README.md @@ -2,7 +2,7 @@ Test parameter to integer conversions. Run: ``` - # kore run + # kodev run ``` Test: diff --git a/examples/json_yajl/README.md b/examples/json_yajl/README.md @@ -8,7 +8,7 @@ link to other libraries. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/jsonrpc/README.md b/examples/jsonrpc/README.md @@ -12,7 +12,7 @@ activated. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/ktunnel/README.md b/examples/ktunnel/README.md @@ -5,12 +5,12 @@ anything-over-HTTPS tunnel. Build: ``` - # kore build + # kodev build ``` Run: ``` - # kore run + # kodev run ``` Test: diff --git a/examples/messaging/README.md b/examples/messaging/README.md @@ -2,7 +2,7 @@ Kore message framework example Run: ``` - # kore run + # kodev run ``` Test: diff --git a/examples/nohttp/README.md b/examples/nohttp/README.md @@ -4,7 +4,7 @@ Note that this example only works if Kore was built with NOHTTP=1. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/parameters/README.md b/examples/parameters/README.md @@ -2,7 +2,7 @@ Example on how to handle GET/POST parameters in Kore. Run: ``` - # kore run + # kodev run ``` Test: diff --git a/examples/pgsql/README.md b/examples/pgsql/README.md @@ -10,5 +10,5 @@ Tons of comments inside on how everything works. Run: ``` - # kore run + # kodev run ``` diff --git a/examples/pipe_task/README.md b/examples/pipe_task/README.md @@ -8,7 +8,7 @@ Before you run this make the pipe: Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/python-pgsql/README.md b/examples/python-pgsql/README.md @@ -4,7 +4,7 @@ This application requires kore to be built with PYTHON=1 PGSQL=1. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/python/README.md b/examples/python/README.md @@ -6,7 +6,7 @@ It mixes native code (dso) with python code. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/sse/README.md b/examples/sse/README.md @@ -2,7 +2,7 @@ This example demonstrates SSE (Server Side Events) in Kore. Run: ``` - $ kore run + $ kodev run ``` Test (run different times to see the events broadcast): diff --git a/examples/tasks/README.md b/examples/tasks/README.md @@ -6,12 +6,12 @@ before returning to the client. Build: ``` - $ kore build + $ kodev build ``` Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/tls-proxy/README.md b/examples/tls-proxy/README.md @@ -7,7 +7,7 @@ completely remove the HTTP component and only run the net code. Run: ``` - $ kore run + $ kodev run ``` Test: diff --git a/examples/video_stream/README.md b/examples/video_stream/README.md @@ -9,12 +9,12 @@ Building: If you did not save your video as videos/video.ogg make sure you update the assets/video.html file to point to the right video. - When done, run a kore build. + When done, run a kodev build. ``` Run: ``` - kore run + kodev run ``` Visit the URI and you should see a video stream. diff --git a/examples/websocket/README.md b/examples/websocket/README.md @@ -2,7 +2,7 @@ Kore example websocket server Run: ``` - # kore run + # kodev run ``` Test: