https://github.com/lancelet/fp-syd-202408
FP-Syd Lighting Talk, August 2024
https://github.com/lancelet/fp-syd-202408
Last synced: 3 months ago
JSON representation
FP-Syd Lighting Talk, August 2024
- Host: GitHub
- URL: https://github.com/lancelet/fp-syd-202408
- Owner: lancelet
- Created: 2024-08-27T12:33:07.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-28T00:56:52.000Z (9 months ago)
- Last Synced: 2025-01-13T21:27:24.718Z (4 months ago)
- Language: Elm
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FP-Syd Presentation - 2024-08-28
This is a lightning talk presentation for the Sydney Functional Programming
group, entitled "Interactive Diagrams in Elm".View the generated presentation on
[GitHub Pages](https://lancelet.github.io/fp-syd-202408/index.html).## Quick Guide
This repository uses NPM for packaging, with the
[Parcel](https://parceljs.org/) build tool. It uses the
[techdraw](https://github.com/lancelet/techdraw) library in Elm (as a
submodule for now, since it has not yet been released) to create a
couple of diagrams which are included directly in the presentation.To compile this presentation:
```
git clone --recurse-submodules [email protected]:lancelet/fp-syd-202408.git
npm install
npm run start # Run the development server
npm run build # Build the deployable project
```To view the minified version:
```
cd dist
npx live-server # Run the deployable version of the site
```To clean:
```
npm run clean
```To re-install everything:
```
npm run reinstall
```