···18# Add local dependencies first (these change less frequently)
19COPY ./lexicon /build/lexicon
20COPY ./lexicon_graphql /build/lexicon_graphql
02122# Add server code
23COPY ./server /build/server
···18# Add local dependencies first (these change less frequently)
19COPY ./lexicon /build/lexicon
20COPY ./lexicon_graphql /build/lexicon_graphql
21+COPY ./client /build/client
2223# Add server code
24COPY ./server /build/server
+4-19
client/README.md
···1-# cache_example
2-3-[](https://hex.pm/packages/cache_example)
4-[](https://hexdocs.pm/cache_example/)
5-6-```sh
7-gleam add cache_example@1
8-```
9-```gleam
10-import cache_example
11-12-pub fn main() -> Nil {
13- // TODO: An example of the project in use
14-}
15-```
16-17-Further documentation can be found at <https://hexdocs.pm/cache_example>.
1819## Development
2021```sh
22-gleam run # Run the project
23-gleam test # Run the tests
024```
···1+# quickslice_client
000000000000000023## Development
45```sh
6+gleam run -m lustre/dev build # Build to ../server/priv/static
7+cd ../server
8+gleam run
9```