An open API service indexing awesome lists of open source software.

https://github.com/khrome83/seedling

:seedling: The seedling static site generator.
https://github.com/khrome83/seedling

deno ssg

Last synced: about 1 month ago
JSON representation

:seedling: The seedling static site generator.

Awesome Lists containing this project

README

          

# seedling

![CI]()

[![Seedling](https://img.shields.io/badge/available%20on-deno.land/x-orange.svg?style=for-the-badge&logo=deno&labelColor=black)](https://deno.land/x/seedling)

Seedling is currently pre-alpha. This document will be updated as we finish more features.

`deno install --unstable --allow-read --allow-write --allow-env --allow-net --allow-hrtime --allow-run -f -n seed https://deno.land/x/seedling@0.0.4/cli.ts`

Run `seed help` for list of commands.

> Note - `seed build` and `seed upgrade` are not implimented yet.

## VS Code Plugin

Currently only offers basic syntax highligting.

https://marketplace.visualstudio.com/items?itemName=Seedling.seedling

## Fish

Need to set .deno/bin in fish to the path

###### ~/.config/fish/config.fish

```
set -gx PATH $HOME/.deno/bin $PATH
```

## Developing

### Installation

`deno install --unstable --allow-read --allow-write --allow-env --allow-net --allow-hrtime --allow-run -f -n seed cli.ts`

### Running Tests

`deno test --unstable --allow-read --allow-env --allow-net`

### Validating Coverage

Run tests and generate coverage.

`deno test --unstable --allow-read --allow-env --allow-net --coverage=cov_profile`

View coverage data.

`deno coverage cov_profile`