### Run Next.js Development Server Source: https://github.com/wisp-cms/nextjs-blog-cms-wisp/blob/master/README.md Starts the Next.js development server, making the blog accessible locally. Once the server is running, you can view the application in your browser at `http://localhost:3000` for development and testing purposes. ```bash npm run dev ``` -------------------------------- ### Install Next.js Blog Dependencies with npm Source: https://github.com/wisp-cms/nextjs-blog-cms-wisp/blob/master/README.md Installs the project dependencies using npm. The `--legacy-peer-deps` flag is crucial due to a dependency (next-themes) not yet upgraded to React 19, ensuring compatibility during installation. This command should also be configured for Vercel deployments. ```bash npm i --legacy-peer-deps ``` -------------------------------- ### Copy Environment Variables File for Next.js Blog Source: https://github.com/wisp-cms/nextjs-blog-cms-wisp/blob/master/README.md Copies the example environment file (`.env.example`) to create the active `.env` file. This file is essential for configuring the application and requires populating the `NEXT_PUBLIC_BLOG_ID` variable with the Blog ID obtained from Wisp CMS after account creation. ```bash cp .env.example .env ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.