Just a silly little app to learn about backend dev and gleam in general
- have postgres v17 or later running locally
- install dbmate and run
dbmate up - at the root of the project, create a .env file with your dev secrets. an example can be found in
./.env.example
source ./dotenv.sh # loads env variables from .env file
gleam run # Run the projectsrc/app/controllers/sudoku.gleam is my best attempt to follow along with the first four lessons Graham Hutton's Advanced Functional Programming in Haskell and converting the Haskell taught there into Gleam.