{"id":26063734,"url":"https://github.com/mavrick-1/eduweb","last_synced_at":"2025-07-17T20:39:00.888Z","repository":{"id":239957407,"uuid":"798074301","full_name":"MAVRICK-1/EduWeb","owner":"MAVRICK-1","description":null,"archived":false,"fork":false,"pushed_at":"2024-07-21T03:53:23.000Z","size":1053,"stargazers_count":14,"open_issues_count":23,"forks_count":20,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-07-21T04:38:07.027Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://edu-web-ruby.vercel.app","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MAVRICK-1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-09T03:32:30.000Z","updated_at":"2024-07-21T03:53:26.000Z","dependencies_parsed_at":"2024-06-11T15:19:39.056Z","dependency_job_id":"a7bb61c9-f8d5-4124-9903-736f24d89b8f","html_url":"https://github.com/MAVRICK-1/EduWeb","commit_stats":null,"previous_names":["mavrick-1/eduweb"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAVRICK-1%2FEduWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAVRICK-1%2FEduWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAVRICK-1%2FEduWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MAVRICK-1%2FEduWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MAVRICK-1","download_url":"https://codeload.github.com/MAVRICK-1/EduWeb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242581217,"owners_count":20153039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-08T17:18:41.102Z","updated_at":"2025-03-08T17:18:41.619Z","avatar_url":"https://github.com/MAVRICK-1.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \n  ![GitHub repo size](https://img.shields.io/github/repo-size/codewithsadee/eduweb)\n  ![GitHub stars](https://img.shields.io/github/stars/codewithsadee/eduweb?style=social)\n  ![GitHub forks](https://img.shields.io/github/forks/codewithsadee/eduweb?style=social)\n[![Twitter Follow](https://img.shields.io/twitter/follow/codewithsadee_?style=social)](https://twitter.com/intent/follow?screen_name=codewithsadee_)\n  [![YouTube Video Views](https://img.shields.io/youtube/views/x26bQPxcFX4?style=social)](https://youtu.be/x26bQPxcFX4)\n\n  \u003cbr /\u003e\n  \u003cbr /\u003e\n\n  \u003ch2 align=\"center\"\u003eeduweb - Education Website\u003c/h2\u003e\n\n  EduWeb is a fully responsive education website, \u003cbr /\u003eResponsive for all devices, build using HTML, CSS, and JavaScript.\n\n  \u003ca href=\"https://codewithsadee.github.io/eduweb/\"\u003e\u003cstrong\u003e➥ Live Demo\u003c/strong\u003e\u003c/a\u003e\n\n\u003c/div\u003e\n\n\u003cbr /\u003e\n\n### Demo Screeshots\n\n![EduWeb Desktop Demo](./readme-images/desktop.png \"Desktop Demo\")\n\n### Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n* [Git](https://git-scm.com/downloads \"Download Git\") must be installed on your operating system.\n\n### Set up and Run Locally\n\nFollow these steps to set up and run **EduWeb** locally:\n\n 1. Fork this repository \n- Click the `Fork` button at the top-right corner of this repository page. This will create a copy of this repository on your github account. \n\n 2. Clone the copy of the project in your local system \n- Following are the steps to clone the repo in your local system: \n\n1. Navigate to the main page of the forked repository on your github account. \n2. click on \u003c\u003e Code.\n3. Copy the URL of the repository. \n4. Open git bash and change the current working directory to the location where you want the cloned directory by command ```bash cd \u003cDirectory_name\u003e ```.\n5. Clone the repository by using the following commands: \n\nLinux and macOS:\n\n```bash\nsudo git clone https://github.com/codewithsadee/eduweb.git\n```\n\nWindows:\n\n```bash\ngit clone https://github.com/codewithsadee/eduweb.git\n```\n\n### Create new branch \n\n1. Check the remotes for the Repository. \n2. Create a new branch using the command: \n\n```bash\ngit checkout -b \u003cyour_branch_name\u003e\n\n```\n\nNow you are all set to perform the desired changes to the codebase.\n\n### Track and Commit changes \n\n1. After you have made your changes, track them by the command: \n\n```bash\ngit add .\n```\n2. Commit your changes with a relevant commit message.\n\n```bash\ngit commit -m \"Message\"\n```\n3. Push the committed changes in your feature branch to your remote repo.\n\n```bash\ngit push -u origin \u003cyour_branch_name\u003e\n``` \n\n### Making a PR \n\n-To create a pull request, go to your forked repository on GitHub and click on Compare \u0026 pull request.\n\n### Contact\n\nIf you want to contact with me you can reach me at [Twitter](https://www.twitter.com/codewithsadee).\n\n### License\n\nThis project is **free to use** and does not contains any license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmavrick-1%2Feduweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmavrick-1%2Feduweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmavrick-1%2Feduweb/lists"}