Prologue on/docs/prologue/Recent content in Prologue onHugo -- gohugo.ioen-USTue, 06 Oct 2020 08:48:45 +0000Introduction/docs/prologue/introduction/Tue, 06 Oct 2020 08:48:57 +0000/docs/prologue/introduction/Get started There are two main ways to get started with Doks: Tutorial 👉 The Tutorial is intended for novice to intermediate users. Step-by-step instructions on how to start a new Doks project. Tutorial → Quick Start 👉 The Quick Start is intended for intermediate to advanced users. One page summary of how to start a new Doks project. Quick Start → Go further Recipes, Reference Guides, Extensions, and Showcase.Quick Start/docs/prologue/quick-start/Mon, 16 Nov 2020 13:59:39 +0100/docs/prologue/quick-start/Requirements Doks uses npm to install dependencies and run commands. Installing npm is pretty simple. Download and install Node.js (it includes npm) for your platform. Start a new Doks project Create a new site, change directories, install dependencies, and start development server. Create a new site git clone https://github.com/h-enk/doks.git my-doks-site Change directories cd my-doks-site Install dependencies npm install Start development server npm run start Doks will start the Hugo development webserver accessible by default at http://localhost:1313.Commands/docs/prologue/commands/Tue, 13 Oct 2020 15:21:01 +0200/docs/prologue/commands/💡 You can change the commands in the scripts section of `./package.json`. start Start local development server: npm run start lint Check scripts, styles, and markdown for errors: npm run lint scripts Check scripts for errors: npm run lint:scripts [-- --fix] styles Check styles for errors: npm run lint:styles [-- --fix] markdown Check markdown for errors: npm run lint:markdown [-- --fix] clean Delete temporary directories: