···1818# Add local dependencies first (these change less frequently)
1919COPY ./lexicon /build/lexicon
2020COPY ./lexicon_graphql /build/lexicon_graphql
2121+COPY ./client /build/client
21222223# Add server code
2324COPY ./server /build/server
+4-19
client/README.md
···11-# cache_example
22-33-[](https://hex.pm/packages/cache_example)
44-[](https://hexdocs.pm/cache_example/)
55-66-```sh
77-gleam add cache_example@1
88-```
99-```gleam
1010-import cache_example
1111-1212-pub fn main() -> Nil {
1313- // TODO: An example of the project in use
1414-}
1515-```
1616-1717-Further documentation can be found at <https://hexdocs.pm/cache_example>.
11+# quickslice_client
182193## Development
204215```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
66+gleam run -m lustre/dev build # Build to ../server/priv/static
77+cd ../server
88+gleam run
249```