Share what you know with millions of people
Focus is the best place to turn what you know into remarkable content
What is the best programming language for a kitchen management software application?
I want to try to build a software application that will partially automate some of the processes in my restaurant kitchen by organising an order/s and giving alarms and information to the cooks on what to cook/prepare and when. I would like some recommendations for the best programming language in which to build it. The application would require some logic and dependencies and would allow me to enter new products with cooking instructions, time taken and dependencies.
Events
- Live now Dos and Don'ts of Small Business Marketing May 29 @ 11 am PT
- Lead Nurturing 202: The Next Generation May 31 @ 11 am PT
- The Tricks to Paid Media June 6 @ 11 am PT
- Display Advertising for Brand Awareness June 20 @ 11 am PT






1 Answer
Nick,
There certainly are quite a few dependencies here but I'll try to simplify as much as possible.
I'm assuming you're going to try to integrate your restaurant with your website and you'd also like employees to be able to take phone orders as well.
Luckily, there is a programming language called Python which will allow you all the power of automation you desire, couple that with Django framework for Python which is geared towards developing advanced web applications. You can used Django for Python to create your website and order taking application, Django will automatically generate an administration control panel that will allow your employees to take orders over the phone. If they need additional controls, those are certainly customizable.
Once an order is placed, the same system that was used to take the order and run your website, will be the same system used in your kitchen to provide notifications and cooking instructions.
http://www.djangoproject.com
Answer This Question