• by dyeje on 2/7/2022, 1:34:54 AM

    You can move your existing front-end to a subdomain (e.g. app.startup.com) and then run your "marketing" (landing, pricing, blog, etc) pages through a separate stack.

  • by donatj on 2/7/2022, 12:17:55 AM

    Unpopular opinion but PHP/MySQL monolith, primarily server side rendering with client side enhancements, and you can have an MVC in weeks instead of months. When performance becomes a concern break off chunks into Go microservices. This is what we did and it's served us very well.

  • by patricklorio on 2/7/2022, 3:29:51 AM

    My react build scripts use https://github.com/stereobooster/react-snap to create static files which I deploy. Might be good enough for you. Otherwise I'd suggest moving the app to a different subdomain as someone else mentioned and having separate marketing pages. If you have a lot of dynamic content (ie user generated) that you want SEO'd, server side rendering is the most tried and tested.