···1-# Wisp Example: Using A Database
23```sh
4gleam run # Run the server
···1+# Wisp Example: Using a database
23```sh
4gleam run # Run the server
+1-1
examples/08-working-with-cookies/README.md
···8This example shows how to read and write cookies, and how to sign cookies so
9they cannot be tampered with.
1011-This example is based off of the [working with form data example][form-data] so read that one
12first. The additions are detailed here and commented in the code.
1314Signing of cookies uses the `secret_key_base` value. If this value changes then
···8This example shows how to read and write cookies, and how to sign cookies so
9they cannot be tampered with.
1011+This example is based off of the ["working with form data" example][form-data] so read that one
12first. The additions are detailed here and commented in the code.
1314Signing of cookies uses the `secret_key_base` value. If this value changes then
···1213You likely want your application to return a generic error page rather than an empty body, and this example shows how to do that.
1415-This example is based off of the [routing example][routing] so read that first.
16The additions are detailed here and commented in the code.
1718[routing]: https://github.com/lpil/wisp/tree/main/examples/01-routing
···1213You likely want your application to return a generic error page rather than an empty body, and this example shows how to do that.
1415+This example is based off of the ["routing" example][routing] so read that first.
16The additions are detailed here and commented in the code.
1718[routing]: https://github.com/lpil/wisp/tree/main/examples/01-routing
+1-1
examples/10-working-with-files/README.md
···78This example shows how to accept file uploads and allow users to download files.
910-This example is based off of the ["Working with form data" example][formdata],
11so read that first. The additions are detailed here and commented in the code.
1213[formdata]: https://github.com/lpil/wisp/tree/main/examples/02-working-with-form-data
···78This example shows how to accept file uploads and allow users to download files.
910+This example is based off of the ["working with form data" example][formdata],
11so read that first. The additions are detailed here and commented in the code.
1213[formdata]: https://github.com/lpil/wisp/tree/main/examples/02-working-with-form-data