Math Rizz is a comprehensive mathematics e-learning web platform designed to enhance the learning experience for high school students (SMA level). It provides interactive lessons, practice exercises, progress tracking, and collaborative features to support students in mastering advanced mathematical concepts.
Read this in other languages: Bahasa Indonesia.
Of course, you need to put this code on your computer first. There are two ways to do this: by downloading the project zip file or by using Git (recommended).
Download the Project Zip
You can click on this link to download the zip file of this project.
Git Clone
Make sure that you have installed git. Open the directory where you want to place the source code in the terminal. Then, run the following command:
git clone [email protected]:404NotFoundIndonesia/math-rizz.git
There are two types of dependencies that we need to install for this project: one for the backend and one for the frontend. For the backend, we use Composer for dependency management, while for the frontend, we use npm to install dependencies.
And make sure this project is open in your command line interface. To confirm your current active directory in the terminal, use the following command:
pwd
To install backend dependencies, use the following command:
composer install
To install frontend dependencies, use the following command:
npm install
You need to open two command line instances to run this project. Each is used for the backend and frontend parts. Also, make sure the active directory in each command line is within this project.
To run the backend server, use the following command:
php artisan serve
To run the frontend server, use the following command:
npm run dev
Open http://localhost:8000
in your browser to access Math Rizz. When you want to access Math Rizz in a web browser, make sure you do not close or stop both of those processes.
Now, you're all set to explore Math Rizz and enhance your mathematics learning experience! Happy learning! 📚✨
Math Rizz is open-sourced software licensed under the MIT license.