{"id":29298,"date":"2026-09-11T20:00:36","date_gmt":"2026-09-11T18:00:36","guid":{"rendered":"https:\/\/blog.mi.hdm-stuttgart.de\/?p=29298"},"modified":"2026-09-11T20:00:37","modified_gmt":"2026-09-11T18:00:37","slug":"a-restaurant-ordering-system-in-the-cloud","status":"publish","type":"post","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/","title":{"rendered":"A Restaurant Ordering System in the Cloud"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Simon Korell, Niklas Weidmann<br>11. September 2026<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So for<br>this semester, we wanted to create such a system ourselves.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">The system includes an application for restaurant guests, which can be used to order from table-mounted displays or from their private phones after scanning a QR code. The waiters and chefs also both get their separate panels, showing relevant information such as incoming orders and information about the session per table.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Goals<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In our internship last semester, both of us already got to gain experience using AWS to host and manage an application.<br>Because of that, we wanted to use this lecture to use and experiment with alternatives to AWS to expand our horizon.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Furthermore, we wanted to gain more practical experience setting up GitLab CI\/CD pipelines, compare using PaaS to IaaS and build a scalable application to keep up with potentially thousands of restaurants using the app.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tech Stack<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The following technologies we used for our project:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Next.js and React+Vite as a framework for our different frontend applications<\/li>\n\n\n\n<li>Express 5 as a framework for our backend<\/li>\n\n\n\n<li>Socket.IO for real-time communication<\/li>\n\n\n\n<li>Supabase to host our PostgreSQL database<\/li>\n\n\n\n<li>Upstash for serverless Redis<\/li>\n\n\n\n<li>Vercel to host our frontend<\/li>\n\n\n\n<li>Railway to host our backend<\/li>\n\n\n\n<li>GitLab CI\/CD for automated tests and deployment<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\"><img loading=\"lazy\" decoding=\"async\" width=\"934\" height=\"502\" data-attachment-id=\"29299\" data-permalink=\"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/screenshot-2026-09-11-193230\/\" data-orig-file=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" data-orig-size=\"934,502\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;,&quot;alt&quot;:&quot;&quot;}\" data-image-title=\"Screenshot 2026-09-11 193230\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" src=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" alt=\"\" class=\"wp-image-29299\" srcset=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png 934w, https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230-300x161.png 300w, https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230-768x413.png 768w\" sizes=\"auto, (max-width: 934px) 100vw, 934px\" \/><\/a><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">The project is built as a monorepo containing the different directories for our backend and each of our frontend applications.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Architectural Decisions<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Our architectural decisions were based on our goals and principles we agreed on at the beginning: finding and using (PaaS) alternatives to AWS, using GitLab CI\/CD pipelines and keeping our applications scalable.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Supabase<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Supabase is a well-known backend-as-a-service platform built on top of PostgreSQL, which we used for our persistent data storage. Using a relational database was the obvious solution for our well-structured restaurant data and both Postgres and Supabase are well established. <br>Supabase manages the database instance for us, allowing for easy setup and<br>management of our database. The database can also easily be scaled up if necessary and can nicely be integrated in our Node.js backend using the Supabase SDK.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Vercel<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">We decided to use Vercel for hosting our frontend application. Vercel is specialized for modern Next.js webapps, which was perfect for our use case. Being built on top of AWS, Vercel promises easier deployment and scaling, as well as a more user-friendly control plane, which was a good opportunity to experience the difference using IaaS (AWS) and PaaS (Vercel). <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Furthermore, the free hobby plan was more than enough for our student project.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Railway<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">Since we need a persistent container running our backend compared to the serverless approach by Vercel, we looked for another platform to host our backend. Railway does exactly that, promising easy configuration and deployment<br>for permanently running backend applications. <br>Railway natively supports Docker, which we used to build our backend.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Similarly to Vercel, Railway also offers a free hobby plan with sufficient resources for our project. Railway, however, is not built on AWS and is more like a more DX-friendly competitor to AWS.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Upstash<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">We wanted to experiment with Redis to cache data and help with scalability of our app, without hosting and maintaining our own Redis server. Looking for alternatives, we found Upstash, a serverless approach for Redis. <br>This allowed us to use Redis in our application with Upstash handling provisioning, scaling and maintenance. We found Redis on Upstash to be easy to configure and the free plan was once again enough for our project.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">GitLab CI\/CD<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">One of our goals with this project was to gain a better understanding of CI\/CD and to apply its principles in a practical setting. For this purpose, we used a GitLab CI\/CD pipeline consisting of test, build and deployment stages. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Automated tests are run before the application is built and then deployed. This ensures that errors can be detected early and faulty changes cannot be deployed to the production environment.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The pipeline configuration is stored in the repository, making the CI\/CD process version-controlled and transparent, with sensitive information being stored as protected GitLab CI\/CD variables.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The test and build jobs are executed automatically on every push, whilst deployment jobs are tied to pushes on the main branch, so only changes intended for production are deployed.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Scalability<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">One of our main goals was to design our application with scalability in mind. We wanted our system to continue working quickly and efficiently even when a large number of guests attempt to use the app simultaneously. <br>To achieve this goal, we used the following approaches:<br>Avoiding tightly coupling our frontend and backend, which allows us to keep both parts interchangeable and to deploy and scale them separately based on demand.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting them on separate platforms (Vercel and Railway) makes this even easier.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As described above, both Vercel and Railway deliver built-in, easy-to-use solutions for scalability. Vercel automatically deploys the application with a global Content Delivery Network to speed up loading times and reduce server load by caching<br>content on globally distributed servers. The CDN worked without complex configuration and we even got a few requests from outside of Germany. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Railway offers both vertical and horizontal scaling. The platform automatically serves resources based on demand (vertical scaling) and allowed us to deploy multiple replicas of our API services if needed (horizontal scaling).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On top of that, we also used Redis to cache data, leading to reduced loading times and load on the database.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Encountered Challenges<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Deployment integration<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">One of the challenges we encountered during the development of our project was to get the cloud deployment up and running. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Initially, we intended to use the deployment integration provided by both Vercel and Railway by simply pasting the repository URL. We were eager to find out if deploying our application really was as easy as both platforms promised it was. However, this approach does not work with self-managed GitLab repositories like ours. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After discussing possible alternatives such as switching to different cloud providers, we decided to integrate the deployment process directly into our GitLab CI\/CD pipeline. This way, Vercel and Railway do not need to have access to our repository.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Setting up the deployment jobs for our pipelines required us to deal with aspects such as deployment tokens, environment and project configuration, deploying different projects from our single monorepo and the different deployment procedures of the two platforms. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Through this process, we gained a better understanding of how CI\/CD pipelines interact with external cloud services. What initially appeared to be a limitation of our infrastructure therefore turned into a valuable learning experience. Instead of relying entirely on the deployment mechanisms provided by the hosting platforms, we gained a better understanding of how testing, building, and deployment can be<br>orchestrated as a single automated process.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">HTTP redirect<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">After getting the deployment on Vercel and Railway to work via GitLab CI\/CD, we started to configure our projects on both platforms. This involved setting necessary environment variables. Setting sensitive information like tokens as protected<br>environment variables made sure that no security-relevant data got pushed to the repository whilst allowing us to manage them in a central location.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One of those variables for the frontend projects was the URL for our API hosted on Railway, which we copied directly from Railway. This URL, however, was a link to http:\/\/ instead of https:\/\/, which caused problems using the API, which<br>took us a while to find the reason for. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When making POST requests to our API using the http:\/\/ address, we found that<br>Railway redirected them to the https:\/\/ address via the 301 Moved Permanently HTTP code. In many cases, redirecting causes the request method to be set to GET as default, which also was the case here. Since the endpoint was not available via GET, we got a quite confusing 404 NOT FOUND error until we found the misconfigured variable.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Local vs cloud deployment<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">When developing this project, we first built the application to run locally until it was almost fully developed.<br>This approach worked well enough for building and developing the application, but caused us some problems when trying to deploy to the different cloud services later. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Even though we tried keeping the deployment to Vercel and Railway in mind<br>when developing the app, a few things just did not work when deploying to the cloud for the first time. <br>Common errors, for example, were hardcoded localhost addresses or relative paths, which could no longer be found in a cloud environment.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A better approach might have been to start with a working deployment pipeline and develop from there, so that errors like the above could have been found earlier or avoided completely.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Experience using Vercel and Railway<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">One of our main goals with this project was to explore alternatives to the established cloud provider AWS. We ended up using Vercel for our frontend applications and Railway for the backend. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Overall, our experience with both platforms was very positive, even though we did not get to try deploying our project by simply pasting the repository link. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Compared to AWS, we found the setup more straightforward and configuration effort to be smaller. Both platforms allowed us to deploy our projects with relatively few steps using the GitLab CI\/CD, automatically detecting and building<br>the corresponding application. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">At the same time, we found that this simplicity comes with certain limitations. While Vercel and Railway both offer a more DX-friendly platform, AWS offers significantly more services and allows for much more detailed control over infrastructure, networking, security and scaling. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For much larger applications, however, there is definitely room for discussion about using AWS or other IaaS providers, as their flexibility and better control offer big advantages. Moreover, we could also consider Kubernetes if managing many containers and services became necessary.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For our student project, however, the advantages of simpler deployment and reduced management effort outweighed these limitations.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Final thoughts<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The journey from our initial idea to the final product was a challenging process, with several unexpected problems, changes, and new requirements along the way. However, working through these challenges was ultimately a valuable part<br>of the project. <br>Every problem we encountered, every discussion and technical decision we made, and every adjustment to our original plans helped us gain a better understanding of the practical challenges involved in developing and deploying a cloud-based application.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">This project gave us the opportunity to experiment with many new technologies and alternatives to established cloud providers, such as Vercel, Railway and Upstash. We also gained more experience correctly using CI\/CD in GitLab.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Initially, we did consider just using AWS for this project; however, we feel like finding and using other options than the one we already knew taught us more and, frankly, was more fun. We think both of us learned something new and hopefully, so did you reading this blog post.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Authors:<\/h4>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Simon Korell<\/li>\n\n\n\n<li>Niklas Weidmann<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves. [&hellip;]<\/p>\n","protected":false},"author":1337,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false,"_ppma_block_editor_authors":""},"categories":[1],"tags":[],"ppma_author":[1265],"class_list":["post-29298","post","type-post","status-publish","format-standard","hentry","category-allgemein"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Simon Korell\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Computer Science Blog\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart\" \/>\n\t\t<meta property=\"og:description\" content=\"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"934\" \/>\n\t\t<meta property=\"og:image:height\" content=\"502\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-09-11T18:00:36+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-09-11T18:00:37+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#article\",\"name\":\"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart\",\"headline\":\"A Restaurant Ordering System in the Cloud\",\"author\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/author\\\/simon_korell\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/Screenshot-2026-09-11-193230.png\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#articleImage\",\"width\":934,\"height\":502},\"datePublished\":\"2026-09-11T20:00:36+02:00\",\"dateModified\":\"2026-09-11T20:00:37+02:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#webpage\"},\"articleSection\":\"Allgemein, Simon Korell\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/category\\\/allgemein\\\/#listItem\",\"name\":\"Allgemein\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/category\\\/allgemein\\\/#listItem\",\"position\":2,\"name\":\"Allgemein\",\"item\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/category\\\/allgemein\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#listItem\",\"name\":\"A Restaurant Ordering System in the Cloud\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#listItem\",\"position\":3,\"name\":\"A Restaurant Ordering System in the Cloud\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/category\\\/allgemein\\\/#listItem\",\"name\":\"Allgemein\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/#organization\",\"name\":\"Computer Science Blog @ HdM Stuttgart\",\"description\":\"on computer science and media topics\",\"url\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/author\\\/simon_korell\\\/#author\",\"url\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/author\\\/simon_korell\\\/\",\"name\":\"Simon Korell\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6c3748ba926ee0a2c975b26c62ce3b7c8bfc3bb0c12f845e675c4a6d9543e12f?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Simon Korell\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#webpage\",\"url\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/\",\"name\":\"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart\",\"description\":\"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/2026\\\/09\\\/11\\\/a-restaurant-ordering-system-in-the-cloud\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/author\\\/simon_korell\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/index.php\\\/author\\\/simon_korell\\\/#author\"},\"datePublished\":\"2026-09-11T20:00:36+02:00\",\"dateModified\":\"2026-09-11T20:00:37+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/#website\",\"url\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/\",\"name\":\"Computer Science Blog @ HdM Stuttgart\",\"description\":\"on computer science and media topics\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.mi.hdm-stuttgart.de\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart","description":"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.","canonical_url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#article","name":"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart","headline":"A Restaurant Ordering System in the Cloud","author":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/author\/simon_korell\/#author"},"publisher":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#articleImage","width":934,"height":502},"datePublished":"2026-09-11T20:00:36+02:00","dateModified":"2026-09-11T20:00:37+02:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#webpage"},"isPartOf":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#webpage"},"articleSection":"Allgemein, Simon Korell"},{"@type":"BreadcrumbList","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de#listItem","position":1,"name":"Home","item":"https:\/\/blog.mi.hdm-stuttgart.de","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/#listItem","name":"Allgemein"}},{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/#listItem","position":2,"name":"Allgemein","item":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/","nextItem":{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#listItem","name":"A Restaurant Ordering System in the Cloud"},"previousItem":{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#listItem","position":3,"name":"A Restaurant Ordering System in the Cloud","previousItem":{"@type":"ListItem","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/#listItem","name":"Allgemein"}}]},{"@type":"Organization","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/#organization","name":"Computer Science Blog @ HdM Stuttgart","description":"on computer science and media topics","url":"https:\/\/blog.mi.hdm-stuttgart.de\/"},{"@type":"Person","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/author\/simon_korell\/#author","url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/author\/simon_korell\/","name":"Simon Korell","image":{"@type":"ImageObject","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/6c3748ba926ee0a2c975b26c62ce3b7c8bfc3bb0c12f845e675c4a6d9543e12f?s=96&d=mm&r=g","width":96,"height":96,"caption":"Simon Korell"}},{"@type":"WebPage","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#webpage","url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/","name":"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart","description":"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/#website"},"breadcrumb":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/#breadcrumblist"},"author":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/author\/simon_korell\/#author"},"creator":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/author\/simon_korell\/#author"},"datePublished":"2026-09-11T20:00:36+02:00","dateModified":"2026-09-11T20:00:37+02:00"},{"@type":"WebSite","@id":"https:\/\/blog.mi.hdm-stuttgart.de\/#website","url":"https:\/\/blog.mi.hdm-stuttgart.de\/","name":"Computer Science Blog @ HdM Stuttgart","description":"on computer science and media topics","inLanguage":"en-US","publisher":{"@id":"https:\/\/blog.mi.hdm-stuttgart.de\/#organization"}}]},"og:locale":"en_US","og:site_name":"Computer Science Blog","og:type":"article","og:title":"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart","og:description":"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.","og:url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/","og:image":"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png","og:image:secure_url":"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png","og:image:width":934,"og:image:height":502,"article:published_time":"2026-09-11T18:00:36+00:00","article:modified_time":"2026-09-11T18:00:37+00:00","twitter:card":"summary","twitter:title":"A Restaurant Ordering System in the Cloud | Computer Science Blog @ HdM Stuttgart","twitter:description":"Simon Korell, Niklas Weidmann11. September 2026 Introduction In our spring vacation, the two of us took a trip to Japan. Besides breathtaking nature and fascinating urban landscape, we were impressed by the easy-to-use ordering systems in many Japanese restaurants, even for foreigners like us. So forthis semester, we wanted to create such a system ourselves.","twitter:image":"https:\/\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2026\/09\/Screenshot-2026-09-11-193230.png"},"aioseo_meta_data":{"post_id":"29298","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":{"subject":"","preview":"","content":""},"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-09-11 17:28:44","updated":"2026-09-11 18:00:37","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/blog.mi.hdm-stuttgart.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/\" title=\"Allgemein\">Allgemein<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tA Restaurant Ordering System in the Cloud\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/blog.mi.hdm-stuttgart.de"},{"label":"Allgemein","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/"},{"label":"A Restaurant Ordering System in the Cloud","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2026\/09\/11\/a-restaurant-ordering-system-in-the-cloud\/"}],"jetpack-related-posts":[{"id":26610,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2024\/09\/06\/hosthive-a-reservation-management-saas\/","url_meta":{"origin":29298,"position":0},"title":"HostHive &#8211; A Reservation Management SaaS","author":"Aleksandra Gidionova","date":"6. September 2024","format":false,"excerpt":"Introduction Picture this: it's a Friday night, and you and your friends are trying to grab a spot at your favorite hometown bar. But there's a catch \u2014 they don\u2019t have a website, let alone an online reservation system. You're left with two options: anxiously calling and hoping someone picks\u2026","rel":"","context":"In &quot;Allgemein&quot;","block_context":{"text":"Allgemein","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2024\/09\/image-16.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2024\/09\/image-16.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2024\/09\/image-16.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2024\/09\/image-16.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":22151,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2022\/02\/22\/designing-and-implementing-a-scalable-web-application\/","url_meta":{"origin":29298,"position":1},"title":"Designing the framework for a scalable CI\/CD supported web application","author":"Danial Eshete","date":"22. February 2022","format":false,"excerpt":"Documentation of our approaches to the project, our experiences and finally the lessons we learned. The development team approaches the project with little knowledge of cloud services and infrastructure. Furthermore, no one has significant experience with containers and\/or containerized applications. However, the team is well experienced in web development and\u2026","rel":"","context":"In &quot;Allgemein&quot;","block_context":{"text":"Allgemein","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/allgemein\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2022\/02\/Design_Desktop_Logged_In-3-150x150.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":4395,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2019\/01\/17\/radcup-a-socialmedia-beerpong-app\/","url_meta":{"origin":29298,"position":2},"title":"Radcup &#8211; a socialmedia beerpong App","author":"Immanuel Haag","date":"17. January 2019","format":false,"excerpt":"Written by: Immanuel Haag, Christian M\u00fcller, Marc R\u00fcttler Radcup adds a bit of social media to the well-known game Beerpong. With Radcup the user has the possibility to register or login. Afterwards he can display\/localize already existing games and join them if possible or create new games. As soon as\u2026","rel":"","context":"In &quot;System Designs&quot;","block_context":{"text":"System Designs","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/system-designs\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-06-at-15.09.35.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-06-at-15.09.35.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-06-at-15.09.35.png?resize=525%2C300&ssl=1 1.5x"},"classes":[]},{"id":2151,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2017\/03\/08\/of-apache-spark-hadoop-vagrant-virtualbox-and-ibm-bluemix-services-part-2-apache-hadoop-ecosystem\/","url_meta":{"origin":29298,"position":3},"title":"Of Apache Spark, Hadoop, Vagrant, VirtualBox and IBM Bluemix Services &#8211; Part 2 &#8211; Apache Hadoop Ecosystem","author":"bh051, cz022, ds168","date":"8. March 2017","format":false,"excerpt":"In our project we primarily implemented Spark applications, but we used components of Apache Hadoop like the Hadoop distributed file system or the cluster manager Hadoop YARN. For our discussion in the last part of this blog article it is moreover necessary to understand Hadoop MapReduce for comparison to Apache\u2026","rel":"","context":"In &quot;Student Projects&quot;","block_context":{"text":"Student Projects","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/student-projects\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":941,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2016\/07\/21\/the-social-cloud-ideas-ideas-and-ideas\/","url_meta":{"origin":29298,"position":4},"title":"SocialCloud &#8211; Ideas, Ideas and Ideas?! &#8211; Part 1","author":"BoNatali","date":"21. July 2016","format":false,"excerpt":"\u00a0 \u201cWell, I am currently working on a system that will stop my cats from entering through the cat flap if they are carrying a dead mouse. - Do you guys have any private projects you would like to work on within this seminar?\u201d - \u00a0Thomas Pohl, lecturer and cat\u2026","rel":"","context":"In &quot;Cloud Technologies&quot;","block_context":{"text":"Cloud Technologies","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/scalable-systems\/cloud-technologies\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/07\/uzZh2psw4J3ri.gif?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":661,"url":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/2016\/06\/22\/keyless-gone-vulnerabilities-in-keyless-car-systems\/","url_meta":{"origin":29298,"position":5},"title":"Keyless Gone &#8211; Vulnerabilities in keyless car systems","author":"Antonia B\u00f6ttinger","date":"22. June 2016","format":false,"excerpt":"(written by Antonia B\u00f6ttinger and Andreas Gold) Introduction Modern cars embed complex technologies to improve the drivers comfort and safety. In 1999 the automobil industry introduced the smart key system that more and more cars use. Even if manufacturers make use of various designations like Keyless Go, KeyFree Power or\u2026","rel":"","context":"In &quot;Secure Systems&quot;","block_context":{"text":"Secure Systems","link":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/category\/system-designs\/secure-systems\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/blog.mi.hdm-stuttgart.de\/wp-content\/uploads\/2016\/06\/keylessgo.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"jetpack_sharing_enabled":true,"authors":[{"term_id":1265,"user_id":1337,"is_guest":0,"slug":"simon_korell","display_name":"Simon Korell","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/6c3748ba926ee0a2c975b26c62ce3b7c8bfc3bb0c12f845e675c4a6d9543e12f?s=96&d=mm&r=g","author_category":"","user_url":"","last_name":"Korell","first_name":"Simon","job_title":"","description":""}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/posts\/29298","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/users\/1337"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/comments?post=29298"}],"version-history":[{"count":1,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/posts\/29298\/revisions"}],"predecessor-version":[{"id":29302,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/posts\/29298\/revisions\/29302"}],"wp:attachment":[{"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/media?parent=29298"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/categories?post=29298"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/tags?post=29298"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/blog.mi.hdm-stuttgart.de\/index.php\/wp-json\/wp\/v2\/ppma_author?post=29298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}