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 i
bun install
This 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 dev
bun run dev
This 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
.env
file - Try deleting the
node_modules
folder and runningnpm i
(orbun install
) again - Check your console for specific error messages
Next Steps
After completing the installation, you'll need to: