• KubeRoot@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    8
    ·
    3 months ago

    This is from before my times, but… Deploying an app by uploading a pre built bundle? If it’s a fully self-contained package, that seems good to me, perhaps better than many websites today…

    • dan@upvote.au
      link
      fedilink
      arrow-up
      3
      ·
      3 months ago

      That was one nice thing about Java. You could bundle the entire app in one .jar or .war file (a .war is essentially the same as a .jar but it’s designed to run within a Servlet container like Tomcat).

      PHP also became popular in the PHP 4.x era because it had a large standard library (you could easily create a PHP site with no third-party libraries), and deployment was simply copying the files to the server. Classic ASP was popular before it, but it had a very small standard library and relied heavily on COM components which had to be manually installed on the server.