-
Fork the repository on GitHub.
-
Clone the repository to your local machine:
git clone <repository-url>
Replace
<repository-url>
with the URL of your forked repository. -
Navigate to the project directory:
cd travelling-postman
-
Create a
.env
file in the root directory of the project:touch .env
-
Add the following environment variables to the
.env
file:DB_NAME = JWT_SECRET = DATABASE_URL =
- Install the required packages:
npm install
-
Start the development server:
npm run dev
-
Open your browser and visit:
http://localhost:3000
-
After making changes to the code, stage them:
git add .
-
Commit the changes:
git commit -m "Your commit message here"
-
Push the changes to your GitHub repository:
git push origin main