A professional network application for job seekers to reach out to potential employers.
List of Modules
API Documentation
Use the package manager npm to install dependencies.
cd frontend\
npm i
Install Node ( Documentation )
Use the package manager npm to install dependencies.
cd backend\
npm i
Create one file name as ".env" and add the below contents
PORT = 4000 // Port for run the server
JWT_SECRET = "Super Key" // This secret key is private to you which means you will never reveal that to the public or inject inside the JWT token.
MONGOURL= mongodb://localhost:27017/practica
( Cloudinary is an end-to-end image- and video-management solution for websites and mobile apps )
CLOUD_NAME // Cloudinary > Account Details > Cloud name.
API_KEY // Cloudinary > Account Details > API_KEY.
API_SECRET // Cloudinary > Account Details > API_SECRET.
# change directory to backend
cd backend\
# start the server
npm start
# change directory to frontend
cd frontend\
# start the server
npm start
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. [email protected]