Docs
SuCoS is a minimalist Static Site Generator focused on simplicity and speed. It converts your Markdown content into a fully functional website, with minimal configuration required.
Prerequisites
None! SuCoS is distributed as a single executable file that works right out of the box.
Quick Start
Install SuCoS following the installation guide.
Create a new site:
sucos new-site ./my-site
cd my-site
Add some content:
- For a regular page: Create a file at
content/pages/my-page.md
- For a blog post: Create a file at
content/blog/my-post.md
- For a regular page: Create a file at
Preview your site:
sucos serve
Then visit http://localhost:2341
in your browser to see your site.
- (Optional) Create a custom theme:
sucos new-theme
This will create a new theme in the themes
directory that you can customize.
- (Optional) Publish your site:
- Build the site:
sucos build
- The static files will be in the
public
directory - Deploy these files to your preferred hosting service
- Build the site:
What's Next?
- Learn more about content creation
- Explore theming