Built with the tools and technologies:
- Overview
- Features
- Repository Structure
- Modules
- Getting Started
- Project Roadmap
- Contributing
- License
- Acknowledgments
❯ REPLACE-ME
❯ REPLACE-ME
└── OS-Scheduling/
├── README.md
├── eslint.config.js
├── index.html
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
│ ├── favicon_large.png
│ ├── favicon_small.webp
│ └── vite.svg
├── src
│ ├── App.jsx
│ ├── Layout
│ │ └── HoveringBoard.jsx
│ ├── assets
│ │ └── react.svg
│ ├── components
│ │ ├── ProcessDetails.jsx
│ │ ├── ProcessList.jsx
│ │ ├── ProcessTable.jsx
│ │ ├── Sections
│ │ └── UI
│ ├── global.css
│ ├── logic
│ │ ├── Process.js
│ │ ├── fcfs.js
│ │ ├── parent.js
│ │ ├── sjf.js
│ │ └── srtf.js
│ ├── main.jsx
│ └── pages
│ ├── About.jsx
│ ├── Homepage.jsx
│ └── Scheduller.jsx
├── tailwind.config.js
└── vite.config.js
.
File | Summary |
---|---|
index.html | ❯ REPLACE-ME |
postcss.config.js | ❯ REPLACE-ME |
vite.config.js | ❯ REPLACE-ME |
package.json | ❯ REPLACE-ME |
eslint.config.js | ❯ REPLACE-ME |
tailwind.config.js | ❯ REPLACE-ME |
package-lock.json | ❯ REPLACE-ME |
src
File | Summary |
---|---|
App.jsx | ❯ REPLACE-ME |
global.css | ❯ REPLACE-ME |
main.jsx | ❯ REPLACE-ME |
src.logic
File | Summary |
---|---|
Process.js | ❯ REPLACE-ME |
parent.js | ❯ REPLACE-ME |
sjf.js | ❯ REPLACE-ME |
srtf.js | ❯ REPLACE-ME |
fcfs.js | ❯ REPLACE-ME |
src.Layout
File | Summary |
---|---|
HoveringBoard.jsx | ❯ REPLACE-ME |
src.pages
File | Summary |
---|---|
Homepage.jsx | ❯ REPLACE-ME |
About.jsx | ❯ REPLACE-ME |
Scheduller.jsx | ❯ REPLACE-ME |
src.components
File | Summary |
---|---|
ProcessTable.jsx | ❯ REPLACE-ME |
ProcessList.jsx | ❯ REPLACE-ME |
ProcessDetails.jsx | ❯ REPLACE-ME |
src.components.UI
File | Summary |
---|---|
Slider.jsx | ❯ REPLACE-ME |
Tooltip.jsx | ❯ REPLACE-ME |
Button.jsx | ❯ REPLACE-ME |
src.components.UI.Input
File | Summary |
---|---|
Input_Label.jsx | ❯ REPLACE-ME |
Input.jsx | ❯ REPLACE-ME |
src.components.UI.Dropdown
File | Summary |
---|---|
Dropdown_Label.jsx | ❯ REPLACE-ME |
Dropdown.jsx | ❯ REPLACE-ME |
src.components.Sections
File | Summary |
---|---|
Hero.jsx | ❯ REPLACE-ME |
Footer.jsx | ❯ REPLACE-ME |
Navbar.jsx | ❯ REPLACE-ME |
JavaScript: version x.y.z
Build the project from source:
- Clone the OS-Scheduling repository:
❯ git clone https://github.com/Halleys123/OS-Scheduling
- Navigate to the project directory:
❯ cd OS-Scheduling
- Install the required dependencies:
❯ npm install
To run the project, execute the following command:
❯ node app.js
Execute the test suite using the following command:
❯ npm test
-
Task 1
:Implement feature one. -
Task 2
: Implement feature two. -
Task 3
: Implement feature three.
Contributions are welcome! Here are several ways you can contribute:
- Report Issues: Submit bugs found or log feature requests for the
OS-Scheduling
project. - Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/Halleys123/OS-Scheduling
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
This project is protected under the SELECT-A-LICENSE License. For more details, refer to the LICENSE file.
- List any resources, contributors, inspiration, etc. here.