SmartPrep MCQ Practice App
smartprep.vercel.app
The SmartPrep MCQ Practice App is designed to help students prepare for their exams. This web-based platform provides a self-assessment test of multiple-choice questions (MCQs), allowing students to practice and assess their knowledge effectively.
- Customizable Question Bank: Easy access to add/delete your MCQ's.
- Live Score: Check your score instantly.
- Instant Feedback: Get immediate feedback on your answers with detailed explanations.
- User-Friendly Interface: Enjoy a clean and intuitive interface for a seamless learning experience.
Creating Backend Server (smartprep.vercel.app/admin)
- Create a Supabase Project after creating a account.
- Run the following SQL script to create a table in Supabase:
CREATE TABLE questions ( id SERIAL PRIMARY KEY, question TEXT, a TEXT, b TEXT, c TEXT, d TEXT, answer CHAR(1) );
- Copy your Supabase URL and API key into your code.
- Install the required python requirements:
pip install -r /path/to/requirements.txt
- Run the Server:
python app.py
- You can add your questions from this page.
- Make sure to create the Supabase project table as mentioned above.
- Add your questions to questions.json in below formmat:
[ { "question": "Tropical moist forests do not include", "a": "broadleaved forests", "b": "wet evergreen forests", "c": "semi-evergreen forests", "d": "moist deciduous forests", "answer": "a" }, { "question": "Another question", "a": "option 1", "b": "option 2", "c": "option 3", "d": "option 4", "answer": "b" } // Add all your questions here ]
- Add your Supabase credentials to insertQuestions.js file.
- Run the insertQuestions.js file using:
node insertQuestions.js
To run the app locally, follow these steps:
- Clone the repository:
git clone https://github.com/VarunMusham/SmartPrep.git
- Navigate to the project directory:
cd SmartPrep
- Install dependencies:
npm install
- Start the development server:
npm start
- Open your web browser and navigate to http://localhost:3000.
- Select the course you want to practice.
- Choose a set of questions and start practicing.
- Review your answers and check the detailed explanations for each question.
You are welcome to contribute for enhancing the app. To contribute, please follow these steps:
- Fork the repository.
- Create a new branch:
git checkout -b feature/your-feature-name
- Make your changes and commit them:
git commit -m "Add your message here"
- Push to the branch:
git commit -m "Add your message here"
- Create a Pull Request detailing your changes.
Feel free to modify the sections as per your specific project details and requirements
Final Demo