Chapter 6: Going to Production
Thanks to the work you've done in the previous chapters, our proof of concept journaling application is now code-complete. We were able to get it running on our laptops and generate production-ready bundles.
It's now time to actually deploy our application so that it can be accessed by others.
There are of course many, many ways to deploy apps, and your infrastructure can be as simple or as complex as you'd like. In this chapter, we'll explore a few options that are ideal for JAMstack applications such as ours (where JAM stands for JavaScript, APIs, and Markup), and we'll finally deploy our code using one of them.
In this chapter, we will cover the following topics:
- Learning about some of the ways Svelte apps (and JAMstack apps in general) can be deployed
- Deploying our application to an object storage service, Azure Storage, and enabling a Content Delivery Network (CDN)
- Setting up Continuous Integration...