Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.45 KB

File metadata and controls

39 lines (24 loc) · 1.45 KB

Food Ordering System:

This is a Desktop based application mainly used for ordering food.

Features:

  • User can register, view menu, order food from anywhere, manage their profile.
  • Anyone can order food, but registered users get discount/promotion.
  • Admin can place food order inside food shop, modify his profile info.
  • Users can also leave their valuable feedback through a comment section.

Language used : Java

Database : MySQL

How to run the project :

  1. Create a database named 'food_shop' in MySql server. Import database (food_shop.sql) file inside this database.

  2. It'll probably give an error, because this database file size exceeded deafult MySql database importing filesize.

    Go to php.ini file and find these two things below :

    //upload_max_filesize
    //post_max_size

    And change their value like these :

    upload_max_filesize = 10M
    post_max_size = 10M

    Check this link, it'll help : https://stackoverflow.com/questions/3958615/import-file-size-limit-in-phpmyadmin

    Database -> Done.

  3. Now, on your command prompt window, run the Non-Packaged Version with command : java Main

  4. Run the Packaged Version with : java home.Main

  5. This is very basic java project. My intention to upload this so that java beginners can learn from it, get some idea for their project.

  6. Enjoy !!