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.
- Host: GitHub
- URL: https://github.com/khrome83/seedling
- Owner: khrome83
- License: mit
- Created: 2020-07-16T02:44:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-01T19:14:27.000Z (almost 5 years ago)
- Last Synced: 2026-04-25T03:40:00.654Z (2 months ago)
- Topics: deno, ssg
- Language: CSS
- Homepage: https://seedling.dev
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# seedling
![CI]()
[](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`