Math with Science is an open-source MERN project that contains math and science problem solvers and the goal is to help anyone struggling with any math problems.
Getting a local copy of the project.
git clone https://github.com/rawand-faraidun/mathwithscience.git
Note: before running the project, pay attention to these points:
-
Watch
.env.example
file in and make a.env
file based on it. -
Run
pre-build
script, or readREADME.md
file inserver
andclient
folders to know more about the project's function.
- Use server to serve the static front-end (this is how the website works), this can be done using
start
script.
npm start
- Use React development and server seperatly using
dev
script, by default the server runs on port 5000 and react development runs on port 3000.
npm run dev
- Use
server
script to run the server,client
script to run the client, or cd into them and start them there.
run server:
npm run server
run client:
npm run client