PORT=3000
MONGO_URI=mongodb+srv://blablabla.mongodb.net/your_db?retryWrites=true&w=majority
SECRET=some-super-secret-key
GMAIL=your.mail@gmail.com
GPASS=application-password
curl --location --request POST 'localhost:3000/v1/auth/resetPassword' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test@gmail.com"
}'
curl --location --request GET 'localhost:3000/v1/users/find' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test@gmail.com"
}'
curl --location --request POST 'localhost:3000/v1/users/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test@gmail.com",
"fullName": "Test User"
}'
curl --location --request PUT 'localhost:3000/v1/users/update' \
--header 'Content-Type: application/json' \
--data-raw '{
"fullName": "Update User"
}'
curl --location --request DELETE 'localhost:3000/v1/users/delete' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "test@gmail.com"
}'