Before running the project, install all required dependencies:
npm install
# or
yarn install
# or
pnpm install
# or
bun install
Run the following command to start the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Once the server is running, open:
👉 http://localhost:3000
If you make changes and need to restart:
npm run dev
To create an optimized production build:
npm run build
Once built, run the production server:
npm start
- If you face dependency issues, try:
rm -rf node_modules package-lock.json && npm install
- Ensure you have the correct Node.js version installed. Recommended:
>=16.x
- Check the logs for any errors and verify environment variables if needed.
Happy coding! 🎉🚀