Nexus is a platform designed to facilitate the review and discussion of research papers. It allows researchers to upload their papers, receive feedback from peers, and engage in meaningful discussions. The platform aims to improve the quality of research by providing a collaborative environment for researchers to share insights and critiques.
On the project folder
npm install
PORT = 5000
MONGO_DB_URI = your mongodb uri,
JWT_SECRET = your jwt key
NODE_ENV = development
npm run server
Backend Server will run at: http://localhost:5000/
cd frontend
npm install
eg:
VITE_API_URL=http://localhost:5000
npm run dev
Frontend will run at: http://localhost:3000/
python -m venv venv
source venv/Scripts/activate
(Git Bash Windows)
pip install -r requirements.txt
uvicorn main:app --reload