mirror of
https://github.com/sigmasternchen/queermandelbrot
synced 2025-03-15 15:58:59 +00:00
27 lines
699 B
Markdown
27 lines
699 B
Markdown
|
# queermandelbrot
|
||
|
|
||
|
[](https://hex.pm/packages/queermandelbrot)
|
||
|
[](https://hexdocs.pm/queermandelbrot/)
|
||
|
|
||
|
```sh
|
||
|
gleam add queermandelbrot@1
|
||
|
```
|
||
|
```gleam
|
||
|
import queermandelbrot
|
||
|
|
||
|
pub fn main() {
|
||
|
// TODO: An example of the project in use
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Further documentation can be found at <https://hexdocs.pm/queermandelbrot>.
|
||
|
|
||
|
## Development
|
||
|
|
||
|
```sh
|
||
|
gleam run -m esgleam/install # Install esbuild dependency
|
||
|
gleam build # Build the project to JS
|
||
|
gleam run -m build # Create bundle in /dist
|
||
|
gleam run -m serve # Start dev webserver on part 8000
|
||
|
```
|