···11-# client
22-33-[](https://hex.pm/packages/client)
44-[](https://hexdocs.pm/client/)
55-66-```sh
77-gleam add client@1
88-```
99-```gleam
1010-import client
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/client>.
1818-1919-## Development
2020-2121-```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
2424-```
client/assets/style.css
This is a binary file and will not be displayed.
+4-1
client/gleam.toml
···19192020[tools.lustre.dev]
2121host = "0.0.0.0"
2222-proxy = { from = "/api", to = "http://localhost:8000" }
2222+port = 3000
2323+proxy = { from = "/api", to = "http://localhost:8000/api" }
2424+stylesheets = [{ href = "/style.css" }]
2525+title = "SIGO"