Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gr-im/site
My personal site, generator and content
https://github.com/gr-im/site
blog fp ocaml static yocaml
Last synced: 3 months ago
JSON representation
My personal site, generator and content
- Host: GitHub
- URL: https://github.com/gr-im/site
- Owner: gr-im
- License: gpl-3.0
- Created: 2021-07-17T14:54:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T13:11:19.000Z (5 months ago)
- Last Synced: 2024-08-26T15:29:48.682Z (5 months ago)
- Topics: blog, fp, ocaml, static, yocaml
- Language: OCaml
- Homepage: https://gr-im.github.io
- Size: 64.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# site
> This is the source code for the generator on my personal page (which uses
> [YOCaml](https://github.com/xhtmlboi/yocaml). The aim of this site will be to
> collect notes on the various subjects I deal with, mainly related to
> programming. It will also serve as a repository for older notes that I have
> taken over the years.## Building locally
This series of instructions explains how to build a local switch, isolated for
development. It assumes you're using [OPAM](https://opam.ocaml.org/) and as the
instructions rely on the existence of the `--with-dev-setup` flag (to install a
development environment), version [`>=
2.2.0+beta1`](https://opam.ocaml.org/blog/opam-2-2-0-beta1/) is required.```shell
opam update # update the state of opam
opam switch create . --deps-only --with-dev-setup -y
eval $(opam env)
```