🧚 A practical web framework for Gleam

Make example READMEs more consistent

authored by Filip Tarajko and committed by Louis Pilfold 9302eeb3 b7e7f379

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