···11# scoundrel
2233-[](https://hex.pm/packages/scoundrel)
44-[](https://hexdocs.pm/scoundrel/)
55-66-```sh
77-gleam add scoundrel@1
88-```
99-```gleam
1010-import scoundrel
1111-1212-pub fn main() -> Nil {
1313- // TODO: An example of the project in use
1414-}
1515-```
33+An implementation of the [Scoundrel](http://www.stfj.net/art/2011/Scoundrel.pdf)
44+solo card game. I was inspired by watching [this
55+video](https://www.youtube.com/watch?v=Gt2tYzM93h4).
1661717-Further documentation can be found at <https://hexdocs.pm/scoundrel>.
77+## Development
1881919-## Development
99+Development is easiest when using nix flakes. Simply `nix develop` to enter a
1010+dev shell with all the necessary dependencies.
20112112```sh
2222-gleam run # Run the project
2323-gleam test # Run the tests
1313+just dev # Run the development server
1414+just cli # Run a cli game
1515+just build # Build the static assets to be deployed
2416```