mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-14 00:31:42 +08:00
20 lines
488 B
Markdown
20 lines
488 B
Markdown
|
# An example ESP32 application
|
||
|
|
||
|
To build this application, follow these steps:
|
||
|
|
||
|
1. Make sure you have Docker installed
|
||
|
2. Clone whole mongoose repository on your machine:
|
||
|
```sh
|
||
|
git clone --depth 1 https://github.com/cesanta/mongoose.git
|
||
|
```
|
||
|
3. Start command line or terminal, and go into the example's directory:
|
||
|
```sh
|
||
|
cd mongoose/examples/esp32
|
||
|
```
|
||
|
4. Run `make`. This invokes a Docker-based build. A firmware will be built
|
||
|
in the `build/` directory:
|
||
|
```sh
|
||
|
make
|
||
|
```
|
||
|
|