### Start Local Development Server Source: https://github.com/go-vikunja/website/blob/main/README.md Starts a local development server, typically accessible at http://localhost:4321, for real-time previewing of changes. ```bash pnpm run dev ``` -------------------------------- ### Install Dependencies Source: https://github.com/go-vikunja/website/blob/main/README.md Installs all the necessary dependencies for the project using the pnpm package manager. ```bash pnpm install ``` -------------------------------- ### Get Astro CLI Help Source: https://github.com/go-vikunja/website/blob/main/README.md Displays help information for the Astro CLI, listing available commands and their usage. ```bash pnpm run astro -- --help ``` -------------------------------- ### Security.txt Example Source: https://github.com/go-vikunja/website/blob/main/src/pages/security.md This snippet shows an example of a security.txt file, commonly used to provide security contact information and policies for an organization. It references the source from Supabase. ```Text Based on https://supabase.com/.well-known/security.txt. ``` -------------------------------- ### Preview Production Build Source: https://github.com/go-vikunja/website/blob/main/README.md Locally previews the production build of the site before deploying it, ensuring everything works as expected. ```bash pnpm run preview ``` -------------------------------- ### Build Production Site Source: https://github.com/go-vikunja/website/blob/main/README.md Builds the project for production, outputting the static site files to the './dist/' directory. ```bash pnpm run build ``` -------------------------------- ### Run Astro CLI Commands Source: https://github.com/go-vikunja/website/blob/main/README.md Executes various commands provided by the Astro CLI, such as adding integrations or checking the project for errors. ```bash pnpm run astro ... ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.