mirror of
https://github.com/jorisvink/kore
synced 2025-03-09 04:29:02 -04:00
kore -> kodev where appropriate
This commit is contained in:
parent
0364cc893c
commit
f1d33ab91b
@ -6,5 +6,5 @@ This example shows cookies API usage
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
@ -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
|
||||
```
|
||||
|
@ -7,5 +7,5 @@ Generic Kore application that shows off a few things:
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
@ -2,7 +2,7 @@ Example on how to read HTTP request headers and set your own custom ones.
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -2,7 +2,7 @@ Test parameter to integer conversions.
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -8,7 +8,7 @@ link to other libraries.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -12,7 +12,7 @@ activated.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -5,12 +5,12 @@ anything-over-HTTPS tunnel.
|
||||
|
||||
Build:
|
||||
```
|
||||
# kore build
|
||||
# kodev build
|
||||
```
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -2,7 +2,7 @@ Kore message framework example
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -4,7 +4,7 @@ Note that this example only works if Kore was built with NOHTTP=1.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -2,7 +2,7 @@ Example on how to handle GET/POST parameters in Kore.
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -10,5 +10,5 @@ Tons of comments inside on how everything works.
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
@ -8,7 +8,7 @@ Before you run this make the pipe:
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -4,7 +4,7 @@ This application requires kore to be built with PYTHON=1 PGSQL=1.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -6,7 +6,7 @@ It mixes native code (dso) with python code.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -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):
|
||||
|
@ -6,12 +6,12 @@ before returning to the client.
|
||||
|
||||
Build:
|
||||
```
|
||||
$ kore build
|
||||
$ kodev build
|
||||
```
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -7,7 +7,7 @@ completely remove the HTTP component and only run the net code.
|
||||
|
||||
Run:
|
||||
```
|
||||
$ kore run
|
||||
$ kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
@ -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.
|
||||
|
@ -2,7 +2,7 @@ Kore example websocket server
|
||||
|
||||
Run:
|
||||
```
|
||||
# kore run
|
||||
# kodev run
|
||||
```
|
||||
|
||||
Test:
|
||||
|
Loading…
x
Reference in New Issue
Block a user