Skip to content

This is a public README for the private repo for all the von-luck related code.

Notifications You must be signed in to change notification settings

aricma/von-luck-public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

von-luck (public)

This is a public README for the private repo of all von-luck related code. We show the software system components and explain their role. This repo holds no code for the actial system.

About the System Components

The Homepage

Screenshot 2023-11-25 at 14 42 54

The homepage is the cusmoters entrypoint. It is a html page served by a simple web server. The information on the homepage is mostly staitc exept for the location specific information, which is fetched via the api from the database.

The Onlineshop

Screenshot 2023-11-25 at 14 42 38

The online shop is where the customers have the chance to preorder for later pickup at their nearest locations. The shop is a single page application, which is fetching the latest product information from the central database. The checkout is done via paypals managed secure checkout.

The Location-App

Screenshot_2023-11-25_at_14_43_59_edited

The location app is for staff only. Only staff can login to the app at one of the von-luck locations. The orders from customers are fetched via the api from the central database and can be managed via the app.

Component Communication, CI and CD

The dns records at von-luck.de forward the trafic to the managed deployments at netlify. The homepage, shop and the location app communicate with the api which is communicating with the managed database service at ninox.com. Every change to the system has to pass a continous integration pipeline before it gets merged into the private master branch. Each new push to master triggers the continous deployment pipeline on netlify. After manual inspection of the newest deployment the deployment is pulished and the dns record get adjusted by netlify to point to the new deployment. Netlify allows to rollback to every old deployment if needed. The components are written to allow for individual deployments of each component. The system works with component deployed from different commits.

flowchart TD

  subgraph von-luck private repo
    CI
  end

  subgraph von-luck.de domain
    von-luck.de
    shop.von-luck.de
    location.von-luck.de
    api.von-luck.de
  end

  subgraph netlify domain
    homepage-von-luck.netlify.com
    shop-von-luck.netlify.com
    api-von-luck.netlify.com
    location-von-luck.netlify.com
  end

  von-luck.de --> homepage-von-luck.netlify.com
  von-luck.de --> shop.von-luck.de --> shop-von-luck.netlify.com
  api.von-luck.de --> api-von-luck.netlify.com
  location.von-luck.de --> location-von-luck.netlify.com

  von-luck.de & shop.von-luck.de & location.von-luck.de -- talks to the api ---> api.von-luck.de
  
  api-von-luck.netlify.com -- talks to the database --> db.ninox.com

  shop-von-luck.netlify.com -- secure checkout via paypal --> checkout.paypal.com
Loading

About

This is a public README for the private repo for all the von-luck related code.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published