ExamTime is a platform designed to facilitate exam preparation by providing a centralized location for sharing and downloading notes in PDF format. Whether you're a student looking for study materials or someone willing to contribute by sharing your notes, ExamTime aims to make exam preparation more efficient and collaborative.
To be able to contribute to this project, you should learn the following technologies:
- ReactJs
- Node.js
- Express.js
- MongoDB
- PDF.js
You can start contributing with knowledge of ReactJs and learn others on the go.
To run the project locally, you need to set up both the server and the client. Here are the steps:
Server Setup:
-
Navigate to the server directory:
cd ExamTime/server
-
Install the necessary dependencies:
npm install
This command installs all the necessary dependencies for the server. It reads the
package.json
file to determine what packages are needed, and then downloads them into anode_modules
folder. -
Start the server:
npm run dev
This command starts the server in development mode. It looks for a script named "dev" in the
package.json
file and runs it. This usually starts up a local development server and rebuilds the app whenever you make changes.
Client Setup:
-
Navigate to the client directory:
cd ../client
-
Install the necessary dependencies:
npm install
This command installs all the necessary dependencies for the client. It reads the
package.json
file to determine what packages are needed, and then downloads them into anode_modules
folder. -
Start the client:
npm run dev
This command starts the client in development mode. It looks for a script named "dev" in the
package.json
file and runs it. This usually starts up a local development server and rebuilds the app whenever you make changes.
Contributions to this project are welcome! Here's how you can contribute:
[Note: Always create a new branch for a new PR]
Before you start coding, create a new branch for your work. This keeps your changes separate from the main codebase and makes it easier to merge your changes later.