Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 809 Bytes

File metadata and controls

40 lines (27 loc) · 809 Bytes

Project Structure

.
├── content : HTML templates and blog posts.
├── docs : Documentation.
├── scripts : Scripts.
└── site-generator : The code for the site generator.
    ├── bin : The executable that wraps the library module.
    └── lib : Actual site generator functionality.

Generating the Website

make generate

Resulting website is in result/dist.

Locally serving the website

It's best to locally serve the website to get the best impression on how it will look when deployed.

make serve

It will automatically generate the website before serving. You can find the url to access in the command output.

Deploying

make deploy ip=$SERVER_IP

Credits