mirror of
https://github.com/fluencelabs/c-template
synced 2025-04-24 22:22:13 +00:00
24 lines
554 B
Markdown
24 lines
554 B
Markdown
# C template
|
|
|
|
Template backend project for C. You can start developing your application by extending src/main.c.
|
|
|
|
|
|
# How to build
|
|
|
|
This app could be built either with docker
|
|
|
|
```bash
|
|
docker-compose up
|
|
```
|
|
|
|
or by Makefile with [wasi-sdk](https://github.com/CraneStation/wasi-sdk) installed
|
|
```bash
|
|
make
|
|
```
|
|
|
|
## 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)
|