├── .gitignore ├── Dockerfile ├── README.md ├── client ├── gleam.toml ├── manifest.toml └── src │ └── app.gleam ├── common ├── gleam.toml ├── manifest.toml └── src │ └── common │ └── counter.gleam ├── fly.toml └── server ├── gleam.toml ├── manifest.toml ├── priv └── static │ ├── app.mjs │ └── counter.mjs └── src └── app.gleam /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/README.md -------------------------------------------------------------------------------- /client/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/client/gleam.toml -------------------------------------------------------------------------------- /client/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/client/manifest.toml -------------------------------------------------------------------------------- /client/src/app.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/client/src/app.gleam -------------------------------------------------------------------------------- /common/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/common/gleam.toml -------------------------------------------------------------------------------- /common/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/common/manifest.toml -------------------------------------------------------------------------------- /common/src/common/counter.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/common/src/common/counter.gleam -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/fly.toml -------------------------------------------------------------------------------- /server/gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/server/gleam.toml -------------------------------------------------------------------------------- /server/manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/server/manifest.toml -------------------------------------------------------------------------------- /server/priv/static/app.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/server/priv/static/app.mjs -------------------------------------------------------------------------------- /server/priv/static/counter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/server/priv/static/counter.mjs -------------------------------------------------------------------------------- /server/src/app.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hayleigh-dot-dev/lustre-universal-component-demo/HEAD/server/src/app.gleam --------------------------------------------------------------------------------