[![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) ![Visitors](https://api.visitorbadge.io/api/visitors?path=Shinjan-saha%2FCanteen-Website%20&countColor=%23263759&style=flat) ![GitHub forks](https://img.shields.io/github/forks/Shinjan-saha/Canteen-Website) ![GitHub Repo stars](https://img.shields.io/github/stars/Shinjan-saha/Canteen-Website) ![GitHub contributors](https://img.shields.io/github/contributors/Shinjan-saha/Canteen-Website) ![GitHub last commit](https://img.shields.io/github/last-commit/Shinjan-saha/Canteen-Website) ![GitHub repo size](https://img.shields.io/github/repo-size/Shinjan-saha/Canteen-Website) ![Github](https://img.shields.io/github/license/Shinjan-saha/Canteen-Website) ![GitHub issues](https://img.shields.io/github/issues/Shinjan-saha/Canteen-Website) ![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/Shinjan-saha/Canteen-Website) ![GitHub pull requests](https://img.shields.io/github/issues-pr/Shinjan-saha/Canteen-Website) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/Shinjan-saha/Canteen-Website)
Welcome to the Canteen-Website , where we cater to all your needs.From satisfying main courses to refreshing beverages, essential stationery, printing services, and delightful ice cream treats – we've got it all under one roof. The College Canteen is not just a place to eat; it's your all-in-one destination for convenience and enjoyment!
Our mission is to cater to your diverse needs, offering not only delicious main courses and refreshing beverages but also essential stationery, hassle-free printing services, and delightful ice cream treats.
Whether you're grabbing a quick bite between classes, restocking your study essentials, or treating yourself to a sweet indulgence, the Canteen-Website is your all-in-one destination on campus. With the option to order online for swift service or visit our physical location, we strive to make every aspect of your college life more convenient.
The Canteen-Website is a student-centric online platform catering to the diverse needs of college students.
Before you begin, ensure you have met the following requirements:
Clone the repository:
Navigate to the project folder:
cd your-repository
Install dependencies:
npm install
flutter pub get
Describe how to run and use your project:
Open the web
directory:
cd web
Open the index.html
file in a web browser.
Open the flutter
directory:
cd flutter
Run the app:
flutter run
Describe how others can contribute to your project. Include guidelines for reporting issues, suggesting enhancements, and submitting pull requests.
This project is licensed under the MIT License.
Copy and paste this content into a markdown file (e.g., README.md
) in the root of your project. Remember to customize the placeholders like your-username
, your-repository
, and any other project-specific information.
If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them.
We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, though! Look at the links below if you're not sure how to open a PR.
1. Fork the repository by clicking on the Fork symbol at the top right corner.
2. Clone the forked repository.
git clone https://github.com/Shinjan-saha/Canteen-Website.git
3. Navigate to the project directory.
cd Canteen-Website
4. Create a new branch:
git checkout -b YourBranchName
5. Make changes in source code.
6. Stage your changes and commit
git add .
git commit -m "<your_commit_message>"
7. Push your local commits to the remote repo.
git push origin YourBranchName
8. Create a PR
Note If anyone contributes to this repository, then the changes will not be reflected in your local repository. For that:
9. Setup a reference(remote) to the original repository to get all the changes from the remote.
git remote add upstream https://github.com/Shinjan-saha/Canteen-Website.git
10. Check the remotes for this repository.
git remote -v
11. Fetching from the remote repository will bring in its branches and their respective commits.
git fetch upstream
12. Make sure that you're on your master branch.
git checkout master
13. Now that we have fetched the upstream repository, we want to merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing our local changes.
git merge upstream/master