Auto-indexing service and GraphQL API for AT Protocol Records quickslice.slices.network/
atproto gleam graphql

update dockerfile

+5 -19
+1
Dockerfile
··· 18 # Add local dependencies first (these change less frequently) 19 COPY ./lexicon /build/lexicon 20 COPY ./lexicon_graphql /build/lexicon_graphql 21 22 # Add server code 23 COPY ./server /build/server
··· 18 # Add local dependencies first (these change less frequently) 19 COPY ./lexicon /build/lexicon 20 COPY ./lexicon_graphql /build/lexicon_graphql 21 + COPY ./client /build/client 22 23 # Add server code 24 COPY ./server /build/server
+4 -19
client/README.md
··· 1 - # cache_example 2 - 3 - [![Package Version](https://img.shields.io/hexpm/v/cache_example)](https://hex.pm/packages/cache_example) 4 - [![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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>. 18 19 ## Development 20 21 ```sh 22 - gleam run # Run the project 23 - gleam test # Run the tests 24 ```
··· 1 + # quickslice_client 2 3 ## Development 4 5 ```sh 6 + gleam run -m lustre/dev build # Build to ../server/priv/static 7 + cd ../server 8 + gleam run 9 ```