* Migrate from static HTML/JS to Haskell/Scotty web application * Add server-side routing and API endpoints * Implement language switching and command processing * Set up project structure with stack * Move static assets to dedicated directory * Add type definitions and template rendering
38 lines
630 B
YAML
38 lines
630 B
YAML
name: portfolio
|
|
version: 0.1.0.0
|
|
github: "yourusername/portfolio"
|
|
license: BSD3
|
|
author: "Thomas Brasdefer"
|
|
maintainer: "thomas@hexasec.io"
|
|
copyright: "2025 Thomas Brasdefer"
|
|
|
|
description: Portfolio website using Haskell and Scotty
|
|
|
|
dependencies:
|
|
- base >= 4.7 && < 5
|
|
- scotty
|
|
- wai
|
|
- wai-extra
|
|
- text
|
|
- bytestring
|
|
- containers
|
|
- transformers
|
|
- aeson
|
|
- warp
|
|
- http-types
|
|
- wai-middleware-static
|
|
|
|
library:
|
|
source-dirs: app
|
|
|
|
executables:
|
|
portfolio-exe:
|
|
main: Main.hs
|
|
source-dirs: app
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- portfolio
|