Running the Project
Step-by-Step Process
-
Open VS Code terminal by typing CTRL+J in Windows/Linux, and for MacOS CMD+J and execute the install command:
- npm
- bun
npm ibun installThis will take some time to download the necessary packages, so wait for a few minutes.
-
After the installation finishes, run the development command:
- npm
- bun
npm run devbun run devThis will launch the development server, and your application should be accessible at
http://localhost:3000.
Troubleshooting
If you encounter any issues during the installation:
- Make sure you have the correct version of Node.js (or Bun) installed
- Check that all environment variables are correctly set in the
.envfile - Try deleting the
node_modulesfolder and runningnpm i(orbun install) again - Check your console for specific error messages
Next Steps
After completing the installation, you'll need to: