We have deployed our website at Click here
Want to clone it in your local machine? Click here ➡ Steps to follow
Youtube link for the same Click here
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
📌
HacknPitch | JU E-Cell Hackathon
📌
Features
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
JU Eats integrates all campus canteens on one web application. It does so by showing food menu, providing the feature to track live canteen food, taking real-time orders & furthermore providing schedule for later option. The idea was generated during HacknPitch Hackathon by JU E-Cell.
Whether you are hungry or not, a glimpse at JU Eats webapp will definitely make you hungry in a jiffy.
#EatWhatMakesYouHappy
⬆️ CLICK HERE TO GO BACK TO CONTENTS
⬆️ CLICK HERE TO GO BACK TO CONTENTS
👉 JU Eats can track the availability of the food in JU Canteens
👉 Order can be placed realtime or can be scheduled
👉 Will add delivery feature so that people outside JU Campus can have their tasty food at their doorsteps.
👉 Will intergrate all the JU Canteens (JU Eats now mainly focused on 4 of them).
⬆️ CLICK HERE TO GO BACK TO CONTENTS
You can refer to the following articles on the basics of Git and Github and also contact the Project Mentors, in case you are stuck:
- Watch this video to get started, if you have no clue about open source
- Installing an apk
- Cloning a Repo
- How to create a Pull Request
- Getting started with Git and GitHub
⬆️ CLICK HERE TO GO BACK TO CONTENTS
You need to clone (download) it to local machine using
$ git clone https://github.com/pappan-123/JU-Eats.git
This makes a local copy of repository in your machine.
Once you have cloned the JU-Eats
repository in Github, move to that folder first using change directory command on linux and Mac.
# This will change directory to a folder
$ cd JU-Eats
Move to this folder for all other commands.
You'll need the following dependencies :
Pycharm Install here
or
VS-Code install here
Installing Django
$ python -m pip install Django
pip install django-allauth
pip install django-crispy-forms
## comment for change Django-Admin Portal
pip install -U django-jazzmin
Add 'jazzmin', to INSTALLED_APPS
INSTALLED_APPS = [
'jazzmin',<br>
'django.contrib.admin',
[...]
]
Always keep your local copy of repository updated with the original repository. Before making any changes and/or in an appropriate interval, run the following commands carefully to update your local repository.
# Fetch all remote repositories and delete any deleted remote branches
$ git fetch --all --prune
# Switch to `master` branch
$ git checkout master
# Reset local `master` branch to match `upstream` repository's `master` branch
$ git reset --hard upstream/master
# Push changes to your forked `covisite` repo
$ git push origin master
Once you have completed these steps, you are ready to start contributing by checking our Help Wanted
Issues and creating
Whenever you are going to make contribution. Please create seperate branch using command and keep your master
branch clean (i.e. synced with remote branch).
# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b Folder_Name
Create a seperate branch for contibution and try to use same name of branch as of folder.
To switch to desired branch
# To switch from one folder to other
$ git checkout Folder_Name
To add the changes to the branch. Use
# To add all files to branch Folder_Name
$ git add .
```sh
# This message get associated with all files you have changed
$ git commit -m 'relevant message'
Now, Push your awesome work to your remote repository using
# To push your work to your remote repository
$ git push -u origin Folder_Name
Then, go to your repository in browser and click on compare and pull requests
.
Then add a title and description to your pull request that explains your precious effort.
⬆️ CLICK HERE TO GO BACK TO CONTENTS
➡️ Souvik Choudhury
(JU MECHANICAL 2nd Year)
➡️ Arghyadip Sengupta
(JU ETCE 2nd Year)
➡️ Saptadeep Sen
(JU ETCE 2nd Year)
➡️ Arkapravo Saha
(JU ETCE 2nd Year)
➡️ Soham Maji
(JU ETCE 2nd Year)
⬆️ CLICK HERE TO GO BACK TO CONTENTS
⬆️ CLICK HERE TO GO BACK TO CONTENTS
Thank You for giving us a chance! Wishing You a Good Day ahead.
⬆️ CLICK HERE TO GO BACK TO CONTENTS