Awesome cloud solution for students
Clone the project
git clone https://github.com/sugan0tech/student-workspace.git
Go to the project directory
cd student-workspace
Install react-core(FrontEnd) dependencies with npm
cd react-core
npm install
Install node(BackEnd) dependencies with npm
cd node
npm install
.env file configuration for node
directory /node/.env
MASTER_KEY="your_key"
PASSWORD="your_password"
DB_URL=""
run react-core(FrontEnd) by
cd react-core
npm run start
Run Server (Node) By
cd node
npm run student-workspace
- Organisation of all study material in one place
- No worry about filling your computer with files
- Cross platform
- Token validation is done via cookies (token : token)
- format
// jwt payload payload : { email: mail, password: password, }
- /api/addAssignment
// sample body:{ assignment : { subject: 'chemistry', assignmentDetails: 'test', date: 'Fri Feb 25 2022 22:40:48 GMT+0530 (India Standard Time)', isCompleted: false, } }
- /api/getAssignmnets
- /api/getBooks
- Exams (/api/getExams)