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

README.md (372B)



      1 Kore task example.
      2 
      3 This example creates an asynchronous task from the page handler
      4 that performs a POST to the same server and fetches its data
      5 before returning to the client.
      6 
      7 Build:
      8 ```
      9 	$ kodev build
     10 ```
     11 
     12 Run:
     13 ```
     14 	$ kodev run
     15 ```
     16 
     17 Test:
     18 ```
     19 	$ curl -i -k https://127.0.0.1:8888/?user=astring
     20 	The returned data must match what you supplied in user ([a-z] string)
     21 ```