BetterMaps

3w

BetterMaps

A new way to find the place to be.

NextJS, React, MongoDb, tailwindcss

2024

BetterMaps

A new way to see the world !

📜 About

Welcome to BetterMaps! Here, within our expansive platform, you'll discover a multitude of new destinations awaiting your exploration. Whether you're seeking vibrant eateries, cozy cafes, exhilarating entertainment spots, tranquil retreats, or even productive workspaces, BetterMaps is your ultimate guide. But it doesn't end there - we encourage you to contribute your own favorite spots, enriching our community with hidden gems and beloved locales, all waiting to be shared with the world.

🚀 Technologies

Frontend

Backend

📦 Installation

Follow these steps to set up BetterMaps:

git clone https://github.com/parlabarbedeMerlin/Better-Maps.git cd Better-Maps

📗 Documentation

Auth (/api/auth)

POST /api/auth/register

KeyDescription
emailThe email of the user.
firstNameThe first name of the user.
lastNameThe last name of the user.
passwordThe password of the user.
confirmPasswordThe confirmation of the password (must be the same as the password).

POST /api/auth/login

KeyDescription
emailThe email of the user.
passwordThe password of the user.

POST /api/auth/verify

KeyDescription
verifyTokenThe token of the user.

Places (/api/places)

GET /api/places

Query parameterDescription
skipThe number of places to skip.
limitThe number of places to return.
filtersThe filters to apply to the places (JSON format).

POST /api/places

The body must contain the place object following the Yup schema.

GET /api/places/:id

The ID is the ID of the place. The server will return the place object.

PATCH /api/places/:id

The body must contain the place object following the Yup schema. The ID is the ID of the place. The server will update the place object.

Project Structure