The official website for ComplyTime - Cloud Native Compliance, Reimagined.
Built with Hugo and the Doks theme.
# Install dependencies
npm install
# Start development server
npm run devThe site will be available at http://localhost:1313/.
# Build for production
npm run buildThe output will be in the public/ directory.
website/
├── assets/ # SCSS, JavaScript, images
│ ├── js/
│ │ └── custom.js
│ └── scss/
│ └── common/
│ ├── _custom.scss
│ └── _variables-custom.scss
├── config/ # Hugo configuration
│ ├── _default/
│ │ ├── hugo.toml
│ │ ├── languages.toml
│ │ ├── params.toml
│ │ └── menus/
│ │ └── menus.en.toml
│ ├── production/ # Production overrides
│ └── next/ # Alternative env overrides
├── content/ # Markdown content
│ ├── _index.md # Homepage
│ ├── docs/ # Documentation
│ │ ├── getting-started/
│ │ └── projects/ # Project pages (complyctl, complyscribe, etc.)
│ └── privacy.md
├── layouts/ # Custom layouts
│ ├── home.html # Homepage layout
│ └── docs/
│ └── list.html # Docs section listing layout
├── static/ # Static assets (favicons, icons)
├── .github/
│ └── workflows/
│ └── deploy-gh-pages.yml # CI/CD deployment
└── package.json
| Menu Item | URL | Description |
|---|---|---|
| Getting Started | /docs/getting-started/ |
Documentation landing page |
| Projects | /docs/projects/ |
ComplyTime project pages |
| Privacy Policy | /privacy/ |
Privacy policy |
Create a new Markdown file in the appropriate directory under content/docs/:
---
title: "Page Title"
description: "Page description"
lead: "Brief intro text"
date: 2024-01-01T00:00:00+00:00
draft: false
weight: 100
toc: true
---
Your content here...Custom styles are in assets/scss/common/:
_variables-custom.scss- Variables and theme colors_custom.scss- Additional custom styles
Site configuration is in config/_default/:
hugo.toml- Hugo settingslanguages.toml- Language and footer settingsparams.toml- Theme parametersmenus/menus.en.toml- Navigation menus
The site is deployed to GitHub Pages via the .github/workflows/deploy-gh-pages.yml workflow. On push to the configured branch, GitHub Actions builds the site with Hugo and deploys the public/ directory.
Contributions are welcome! Please see our Contributing Guide.
This website is licensed under Apache 2.0.