dsg 1.0.3 copy "dsg: ^1.0.3" to clipboard
dsg: ^1.0.3 copied to clipboard

outdated

Static site generator. Supports markdown, mustache, partials, assets, sass. Webserver included.

DSG: A Dart Static Site Generator #

Includes support for:

  • commonmark (markdown) content
  • mustache templates
  • template partials
  • yaml front-matter
  • json / yaml data processing
  • a webserver
  • Sass + autoprefix support

think: Jekyll for Dart

Use as an executable #

You can either install dsg with pub:

pub global activate dsg

or you can just download the self-contained executable for your platform from the Github repo.

Example #

  • Install DSG (see above)
  • Clone the example from https://github.com/maks/dsg/tree/master/samples/simple
  • cd into the local simple git repo
  • run dsg -x

Play with the sample files...

Support for https-connection!

This is absolutely mandatory if your REST-Server uses HTTP Strict Transport Security (HSTS)

Here you can see the necessary configuration for HTTPS-Support
Generate a self-signed certificate, name it dart.cert and dart.key, place it under

Support for SASS_PATH

Understanding and Using Sass Load Paths

These settings in your .dsg/site.yaml ()

    sasscompiler: sass
    sass_path:
      - "package:zengen"
      - "package:mdl"

generate the following SASS_PATH:

dsg -s

    Settings:
        Loglevel:                  info
        ...
        SASS compiler:             sass
        SASS_PATH (only for sass): /Users/example/.pub-cache/hosted/pub.dartlang.org/zengen-0.3.2/lib
                                   /Volumes/Daten/DevLocal/DevDart/MaterialDesignLite/lib
        ...

As you can see the first path is resolved to .pub-cache, the second path is resolve to a local working dir where the mdl-library resides

Now you can define your SASS-Import as follows:

    // Imports package:mdl/lib/assets/styles/button/variables
    @import "assets/styles/button/variables";

What it does #

DSG is a static site generator in Dart, with a webserver included. It supports extra assets-folder and template partials.
You can write your pages in HTML or CommonMark aka "Markdown" is supported.

A webserver for a quick previews is included. On Mac you also get automatic page refresh. On other platforms you could try LivePage chrome extension for maximum productivity.

Here you can see a typical site structure.

See manichord.com for a site built entirely with DSG.

Check out the sample!.

├── .dsg
│   ├── html
│   │   ├── _content
│   │   │   ├── about
│   │   │   │   └── index.html
│   │   │   ├── assets
│   │   │   │   ├── images
│   │   │   │   │   ├── android-desktop.png
│   │   │   │   │   ├── favicon.png
│   │   │   │   │   └── ios-desktop.png
│   │   │   │   └── styles
│   │   │   │       └── styles.scss
│   │   │   ├── features.html
│   │   │   ├── index.html
│   │   │   ├── main.dart
│   │   │   ├── markdown.md
│   │   │   ├── special
│   │   │   │   ├── template.html
│   │   │   │   └── xtreme.html
│   │   │   └── technology.html
│   │   ├── _data
│   │   │   ├── families.json
│   │   │   ├── menu.json
│   │   │   └── xmen.yaml
│   │   ├── _partials
│   │   │   ├── cards
│   │   │   │   └── wide.html
│   │   │   └── header.html
│   │   └── _templates
│   │       ├── default.html
│   │       └── info_page.html
│   ├── refreshChrome-1.0.applescript
│   ├── refreshChromium-1.0.applescript
│   ├── refreshDartium-1.0.applescript
│   └── site.yaml
├── pubspec.yaml
└── web
    ├── about
    │   └── index.html
    ├── assets
    │   ├── images
    │   │   ├── android-desktop.png
    │   │   ├── favicon.png
    │   │   └── ios-desktop.png
    │   └── styles
    │       ├── styles.css
    │       └── styles.scss
    ├── features.html
    ├── index.html
    ├── main.dart
    ├── markdown.html
    ├── special
    │   ├── template.html
    │   └── xtreme.html
    └── technology.html

.dsg: This is where your (optional) site.yaml lives
This folder is also used to store autgenerated scripts - in the case above you can see the script to refresh Chromium on Mac.

.dsg/html/_content: This is where DSG will look for your files to generate the site from. The following file-formats are supported:

  • .md
  • .markdown
  • .dart
  • .js
  • .json
  • .html
  • .scss
  • .css

.dsg/html/_data: [optional] This is the place where you can store your data-files.
The following file-formats are supported:

  • .yaml
  • .json

DSG injects your data into a global _data variable. Here is a sample how to use such data:

<ul>
    {{#_data.xmen}}
    <li>{{.}}</li>
    {{/_data.xmen}}
</ul>

.dsg/html/_assets: [optional] Additional assets that you don't want to have in _content. The following file types are supported:

  • .scss
  • .jpg
  • .png
  • .gif
  • .woff
  • .ttf
  • .pdf

.dsg/html/_templates: The directory containing your HTML+Mustache templates.

web: Following Dart conventions - this is your default output directory.

site.yaml #

Optional YAML file that stores your global values and config options. Values set here can be accessed from all templates and markdown files.

site_options:
  author: Maksim Lin

Can be used in your template (default.html) as

<span>{{_site.author}}</span>

You can also use site.yaml to overwrite your dsg default configuration.
Supported vars:

  • content_dir: .dsg/html/_content
  • template_dir: .dsg/html/_templates
  • data_dir: .dsg/html/_data
  • partials_dir: .dsg/html/_partials
  • assets_dir: .dsg/html/_assets
  • output_dir: web
  • workspace: .
  • date_format: dd.MM.yyyy
  • yaml_delimeter: ~~~
  • use_markdown: true
  • default_template: default.html
  • sasscompiler: sassc
  • usesass: true
  • autoprefixer: true
  • browser: Chromium
  • talktome: true (on OSX, false on all the other OSs)
  • watchfolder1, watchfolder2 and watchfolder3

Markdown #

DSG lets you use CommonMark aka "Markdown" to write your site content.

At the beginning of each markdown file, you have the option to use a YAML "front-matter" block to define custom values that you can inject into your templates. Example:

~~~
title: A Blog Post
published: 01/01/2014
category: example
tags:
    - StillShot
    - Rants
    - Etc.
~~~
{{title}}
Normal Markdown content here...

As you can see, a line of tildes (~) is used to delimit your YAML block (marking start and end lines). You can access/inject your values into your pages using mustache template syntax. You can do this either inside your dedicated HTML/mustache templates:

<ul>
  {{#tags}}
    <li>{{.}}</li>
  {{/tags}}
</ul>

Or, you can embed your values within the markdown file itself:

{{#tags}}
  - __{{.}}__
{{/tags}}

so you can take advantage of templating and markdown at the same time.

Simply place all your files in your content_dir and DSG will generate your site accordingly.
If your markdown file has a .md extension it will be renamed to .html.

Templates #

As mentioned above, you can access any variables set within your markdown files from your templates using mustache. Options set from your site.yaml / site_options can be accessed through the _site variable, like so:

<h1>{{ _site.author}}</h1>

where author is a property defined in your site.yaml / site_options. You can access these values from your markdown or from your html files.

Every page and template has access to the following values:

  • title: title, usually set inside each markdown file, but is set to the name of markdown file if left blank
  • _site: site.yaml values
  • _date: the post/markdown file's last modified date
  • _content: converted markdown content (only accessible from templates)
  • _page.relative_to_root: will be replaced with some '../' depending on the nesting level of your page (check about/index.html)

The default template is 'default.html' but you can overwrite this behavior if you add a 'template' var to the yaml-block of your content file.

template: info_page

Partials #

Optional
Files / Directories in your _partials-Folder will be translated into partials-names.
For example: _partials/category/house.md translates into {{>category.house}}
A partial can be either a .md or a .html file

You can also use partials in the files yaml block:

~~~
template: default.html    
dart: ->usage.badge.dart  
~~~  

SASS #

If DSG finds a .scss file in your output dir (web) it compiles it to the corresponding .css file.
Install instruction for SASS can be found here
In short it's gem install sass and gem install sassc

You can turn off SASS either with --no-usesass or with the appropriate setting in site.yaml

Or install sassc, eg on MacOS: brew install sassc

Autoprefixer #

After compiling .SCSS to .CSS DSG calls autoprefixer

You can turn off Autoprefixer either with --no-useapfx or with the appropriate setting in site.yaml

Install #

Install

    pub global activate dsg

Update

    # activate dsg again
    pub global activate dsg

Uninstall

    pub global deactivate dsg   

Usage #

Usage: dsg [options]
    -s, --settings         Prints settings
    -h, --help             Shows this message
    -g, --generate         Generate site
    -c, --generatecss      Generate CSS (compile SCSS2CSS)
    -w, --watch            Observes SRC-dir
    -x, --watchandserve    Shortcut to watch and serve
    -i, --init             Initializes your site
                           (not combinable with other options)

        --serve            Serves your site
        --[no-]usesass     Enables / disables SASS to CSS compiler
                           (defaults to on)

        --[no-]useapfx     Enables / disables Autoprefixer
                           (defaults to on)

        --[no-]talktome    Enables / disables Speek-Output
                           (defaults to on)

        --ip               Sets the IP-Address to listen on
                           (defaults to "127.0.0.1")

        --port             Sets the port to listen on
                           (defaults to "8000")

        --docroot          Document root
                           (defaults to "web")

    -v, --loglevel         Sets the appropriate loglevel
                           [info, debug, warning]

Sample:

    'Generates all basic files and folders:                'dsg -i'
    'Observes the default dirs and serves the web-folder:  'dsg -w --serve'
    'Observes the default dirs and serves the web-folder:  'dsg -x'
    'Generates the static site in your 'web-folder':       'dsg -g'

Go to your project root (this is where your pubspec.yaml is) and type:

`dsg -i`

This creates a basic file structure for you.

Now type

`dsg -x`

This serves your files under https://localhost:8000/

If you are using Chromium on Mac you will get a automatic page refresh for free!

Hints #

  • Just serve a local dir on port 8000 without generating something:
    dsg --serve --docroot .

  • DSG observes automatically it's basefolders like _content, but if you want additional folders that should be observed so that dsg automatically regenerates it's file - set watchfolder[1-3] in you site.yaml

  • Test your App with Chrome and use dsg as server (MAC + Linux only)
    pub build && cd build/web && dsg --serve --port 9000 --docroot . || cd -

    Explanation:
    Runs "pub build" - if this runs without errors cd to "build/web" In "build/web" run dsg as server on port 9000 and set docroot to . (current dir (default would be "web"))
    || means if the prev command ends with an error (Ctrl + C to cancel dsg)
    jump back where you came from. You should be back in your base folder (where your pubspec.yaml is)

Features and bugs #

Please file feature requests and bug reports in the issue tracker.

Thanks #

I want to thank Michael Mitterer for his SiteGen package that I used as a starting point for DSG.

License #

Copyright 2020 Maksim Lin (admin@manichord.com), Manichord Pty Ltd

Copyright 2019 Michael Mitterer (office@mikemitterer.at),
IT-Consulting and Development Limited, Austrian Branch

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.
4
likes
0
pub points
0%
popularity

Publisher

verified publishermanichord.com

Static site generator. Supports markdown, mustache, partials, assets, sass. Webserver included.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, console_log_handler, http_server, intl, logging, markdown, packages, path, reflected_mustache, system_info, validate, watcher, where, yaml

More

Packages that depend on dsg