No description
  • Haskell 69.3%
  • Nix 23.3%
  • PLpgSQL 7.3%
  • Dhall 0.1%
Find a file
Charlotte 🦝 Deleńkec ab32994d66
All checks were successful
Hydra x86_64-linux Hydra build #119022 of quillian:main:x86_64-linux
Hydra aarch64-linux Hydra build #119021 of quillian:main:aarch64-linux
remove riscv
2026-05-21 15:29:25 +01:00
benchmark initial raccommit 2026-05-21 12:07:27 +01:00
db/migrations initial raccommit 2026-05-21 12:07:27 +01:00
executable initial raccommit 2026-05-21 12:07:27 +01:00
hydra fix ci 2026-05-21 12:10:33 +01:00
library initial raccommit 2026-05-21 12:07:27 +01:00
test-suite initial raccommit 2026-05-21 12:07:27 +01:00
.envrc initial raccommit 2026-05-21 12:07:27 +01:00
.gitignore commit cabal files too 2026-05-21 12:14:34 +01:00
.hlint.yaml initial raccommit 2026-05-21 12:07:27 +01:00
CHANGELOG.md initial raccommit 2026-05-21 12:07:27 +01:00
config.dhall initial raccommit 2026-05-21 12:07:27 +01:00
default.nix remove riscv 2026-05-21 15:29:25 +01:00
LICENSE.md initial raccommit 2026-05-21 12:07:27 +01:00
package.nix initial raccommit 2026-05-21 12:07:27 +01:00
package.yaml initial raccommit 2026-05-21 12:07:27 +01:00
quillian.cabal commit cabal files too 2026-05-21 12:14:34 +01:00
README.md initial raccommit 2026-05-21 12:07:27 +01:00
Setup.hs initial raccommit 2026-05-21 12:07:27 +01:00
shell.nix initial raccommit 2026-05-21 12:07:27 +01:00
treefmt.toml initial raccommit 2026-05-21 12:07:27 +01:00

quillian

Thanks for starting a project with Haskeleton! If you haven't heard of it before, I suggest reading the introductory blog post. You can find it here: http://taylor.fausak.me/2014/03/04/haskeleton-a-haskell-project-skeleton/.

Before you get started, there are a few things that this template couldn't provide for you. You should:

  • Add a synopsis to package.yaml. It should be a short (one sentence) explanation of your project.

  • Add a description to package.yaml. This can be whatever you want it to be.

  • Add a category to package.yaml. A list of categories is available on Hackage at http://hackage.haskell.org/packages.

  • Rename library/Example.hs to whatever you want your top-level module to be called. Typically this is the same as your package name but in CamelCase instead of kebab-case.

    • Don't forget to rename the reference to it in executable/Main.hs!
  • If you are on an older version of Stack (<1.0.4), delete package.yaml and remove /*.cabal from your .gitignore.

Once you've done that, start working on your project with the Stack commands you know and love.

# Build the project.
stack build

# Run the test suite.
stack test

# Run the benchmarks.
stack bench

# Generate documentation.
stack haddock

Thanks again, and happy hacking!