https://github.com/janzaheer/restaurant_system
https://github.com/janzaheer/restaurant_system
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/janzaheer/restaurant_system
- Owner: janzaheer
- Created: 2019-11-28T10:51:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T16:29:55.000Z (over 1 year ago)
- Last Synced: 2025-04-03T14:43:34.745Z (2 months ago)
- Language: Python
- Size: 1.16 MB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Restaurant Management System #
Restaurant Management System is a web based Application developed in Python/Django. The Software is designed for the small food and beverges business to maintain there orders, stocks and etc.
Designed by Partum Solutions (New Startup in Quetta, Pakistan. Provides Services and Solutions).## Features
Tables
Categories and Menus
Stocks
Orders
Sales
Empoyees Details
Daily Sales Details
Reports (Daily, Monthly)
Stock Logs (Daily, Monthly)## Python Version
2.7.10Using Django Framework and JQuery on the Frontend
## Demo URL
## To Get Started ##
1. Create a Virtual Environment
2. Create a Fork and Clone Project by using the following command
> git clone [email protected]:janzaheer/restaurant_system.git
3. Create local settings file and add the local database configuration, You can use any database SQLite, Mysql or Postgress SQL etc. Following is the configuration code for SQLite database.
```
# settings_local.pyimport os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.local'),
}
}
```4. Go to the main directory where `manage.py` file exists abd install all the requirements by running the command:
> pip install -r requirements.txt4. Migrate by runnning the following command.
> python manage.py migrate5. Create super user to access the admin
> python manage.py createsuperuser6. Run the Django Server by using following command.
> python manage.py runserverNow you can access the application in your browser by URL `http://localhost:8000`
## Need Help? ##
- You can ask me any question any time, email me [email protected]
- Please use GitHub issues to report issues.
## Contribute
As an open source project with a strong focus on the user community, we welcome contributions as GitHub pull requests. See our Contributor Guides to get going. Discussions and RFCs for features happen on the design discussions section of our Forum.