### Install Project Dependencies (npm/yarn) Source: https://github.com/xyleme-sidekick/simple-kick/blob/main/README.md Installs the necessary project dependencies using either npm or yarn. Ensure Node.js (version 18+ recommended) is installed. ```bash npm install # or yarn install ``` -------------------------------- ### Run Development Server (npm/yarn) Source: https://github.com/xyleme-sidekick/simple-kick/blob/main/README.md Starts the local development server using npm or yarn. The application will be accessible at http://localhost:5173. ```bash npm run dev # or yarn dev ``` -------------------------------- ### Build for Production (npm/yarn) Source: https://github.com/xyleme-sidekick/simple-kick/blob/main/README.md Creates an optimized production build of the project using npm or yarn. The output will be placed in the 'dist' folder. ```bash npm run build # or yarn build ``` -------------------------------- ### Preview Production Build (npm/yarn) Source: https://github.com/xyleme-sidekick/simple-kick/blob/main/README.md Locally previews the production build of the project using npm or yarn. This command is useful for testing the deployed version before actual deployment. ```bash npm run preview # or yarn preview ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.