blob: 014e0170f145d43ee1b106c04931f8cb5a85a3c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# lustre_counter
This is an example Lustre project. It uses [watchexec](https://github.com/watchexec/watchexec) to rebuild the Gleam project on save.
## Quick start
Initial setup:
```sh
npm install
gleam build
```
Run dev server on `localhost:3000`:
```sh
make dev
```
Make a production build under `dist` folder:
```sh
make
```
|