https://github.com/sinhaparth5/mcdwebsite
Headington McDonald's Website
https://github.com/sinhaparth5/mcdwebsite
menu order
Last synced: 11 days ago
JSON representation
Headington McDonald's Website
- Host: GitHub
- URL: https://github.com/sinhaparth5/mcdwebsite
- Owner: sinhaparth5
- License: gpl-3.0
- Created: 2024-02-05T12:17:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T10:32:36.000Z (over 1 year ago)
- Last Synced: 2025-01-04T05:54:05.948Z (over 1 year ago)
- Topics: menu, order
- Language: TypeScript
- Homepage: https://headington-menu.netlify.app/
- Size: 535 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Headington McDonald's Private Website T

*Step to pull and use the website for testing or for further inprovememt purposes*
Pull the repository on your code editor, eg. VS Code, Fleet, Sublime Text, etc.
On VS Code use Live Server extention to deploy the website \n open the index.html file to deploy the website.
_Steps to push the changed code to the repository_
Step 1: Check the file which are changed(not mandatory, but good practice to see and get the path of the changed file)
```Bash
git status
```
Step 2: Add the files to git which are changed
Adding individual file:
```Bash
git add
```
Adding all the files shown in git status:
```Bash
git add --all
```
Step 3: Commit the changes
```Bash
git commit -m ""
```
Step 4: Push the changes to the repository
```Bash
git push
```