Skip to content

Latest commit

 

History

History
66 lines (43 loc) · 1.21 KB

README.md

File metadata and controls

66 lines (43 loc) · 1.21 KB

Scheduler

Scheduling algorithms tell the CPU which will be the next process to have CPU time. The main goal of scheduling algorithms is to Maximize Throughput. Scheduling algorithms can be preemptive and non-preemptive.

Netlify Status

Getting Started

Clone this repo in your local machine using,

git clone https://github.com/notwld/Scheduler

To run the backend server, run these commands

cd backend
python main.py

For Frontend,

cd frontend
npm start

Contribution

Contribute to this repo by following these steps,

Fork the repo and then

git clone (your forked repo link)

It'll clone this repo on your local machine.

git add .

Run this command after making changes to the code.

git commit -m "{enter your contribution message}"

Commit your contributions using above command. Note: replace curly braces with your message
Finally push your code using,

git push origin