2019-04-21 22:25:40 +03:00
|
|
|
# C template
|
|
|
|
|
2019-04-21 22:38:12 +03:00
|
|
|
Template backend project for C.
|
2019-04-21 22:25:40 +03:00
|
|
|
|
2019-04-21 22:23:36 +03:00
|
|
|
# How to build
|
2019-04-12 22:36:46 +03:00
|
|
|
|
2019-04-21 22:23:36 +03:00
|
|
|
This app could be built either with docker
|
2019-04-12 22:36:46 +03:00
|
|
|
|
2019-04-21 22:23:36 +03:00
|
|
|
```bash
|
|
|
|
docker-compose up
|
|
|
|
```
|
2019-04-12 22:36:46 +03:00
|
|
|
|
2019-04-21 22:23:36 +03:00
|
|
|
or by Makefile with [wasi-sdk](https://github.com/CraneStation/wasi-sdk) installed
|
2019-04-12 22:36:46 +03:00
|
|
|
```bash
|
2019-04-21 22:23:36 +03:00
|
|
|
make
|
|
|
|
```
|
2019-10-07 23:06:45 +03:00
|
|
|
|
|
|
|
## C/C++ application examples
|
|
|
|
|
|
|
|
- [hello world](https://github.com/fluencelabs/tutorials/tree/master/hello-world/app-logger-c)
|
|
|
|
- [Redis](https://github.com/fluencelabs/redis/tree/wasm)
|
|
|
|
- [SQLite](https://github.com/fluencelabs/sqlite/tree/master)
|