<aside> 📜 TABLE OF CONTENTS

Setup for local deployment 🎯

In this section, we'll guide you through the initial steps to deploy our app locally.

1 Clone the repository from GitHub

git clone <https://github.com/DolfShungube/Hiking-Logbook.git>

2. If you want to use the deployed API ignore the following two steps

3.a If you want to run the API locally go to the backend folder:

cd backend

b create a .env file ,(you will need the supabase url and anon key used for the project)

install dependencies

npm install

start server

npm start

Go back to the root of the project

cd ..

3.a Go to the frontend folder

cd frontend

b create a .env file ,(you will need the supabase url and anon key used for the project)

install dependencies

npm install

start app

npm run dev