A basic NextJS App to perform authentication
View Demo
This is basic web app based on NextJS to authorize users saved in MongoDB to upload there profile picture and render their address on the static map.
Major frameworks and libraries:
To get a local copy up and running follow these simple example steps.
You need to have these free APIs keys in your .env.local file:
-
Cloundinary -> to save uploaded images on the cloud
CLOUDINARY_URL= cloudinary://...
-
Position Stack-> to get coordinates of a address
CORDS_KEY= positionstack api key...
-
Mapbox-> to render a static map from the coordinates
MAPBOX_KEY=mapbox api key
You also need to set MongoDB URL in your .env.local file:
-
MONGODB_URI=MONGO_DB_URI_WITH_DEFAULT_DATABASE
And, the last thing is to set JWT Key (any key):
- JWT Authentication Key
JWT_KEY=MyJWTKey
you can rename '.env.local.txt' to '.env.local'
-
Get your keys ready
-
Clone the repo
git clone https://github.com/parmdhillon/myuserbook.git
-
Install NPM packages
npm install
-
Update your keys in
.env.local
-
Run the project @ localhost:3000
npm run dev