Skip to content

Commit f64eea7

Browse files
committed
fixed a typo
1 parent c70c1b7 commit f64eea7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/blog/2019-02-27-jamstack-and-cd-pipelines-create-a-blog-with-nuxt-netlify-cms-and-netlify.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ date: '2019-03-01T21:15:00-06:00'
1717
thumbnail: /images/uploads/john-barkiple-539580-unsplash-micro.jpeg
1818
---
1919
## The "old" ways
20-
Say you wanted to create a blog, you'd could easily run a Wordpress site, with a linux server distributing your content. On each page load, the server would generate the webpages, and serve them to the user.
20+
Say you wanted to create a blog, you could easily run a Wordpress site, with a Linux server distributing your content. On each page load, the server would generate the webpages, and serve them to the user.
2121
Every request puts the server to work.
2222
It's a perfectly viable option, although slower compared to more modern options, more insecure as you have to be doing the updates on your server (or paying more for a managed server), and it requires using PHP and having a database running.
2323

@@ -28,7 +28,7 @@ The benefits that this approach has is that your webpage ends up being blazing f
2828
Your page is also more secure! Since you don't have exposed APIs, you could even use Wordpress as a CMS but without the security risks or performance problems of running Wordpress itself.
2929
The performance is definitely worth mentioning again, as it is quite easy to make your site super fast.
3030

31-
There is one caveat though. Every time you change anything, you have to rebuild your assets, and deploy them... ugh... **but wait!**, as that's were a CD pipeline comes into play!
31+
There is one caveat though. Every time you change anything, you have to rebuild your assets, and deploy them... ugh... **but wait!**, as that's where a CD pipeline comes into play!
3232

3333
## CD pipelines...?
3434
You've probably heard the terms CI/CD being thrown around, with CD sometimes referring to Continuous Delivery or Continuous Deployment. Arguments get quite long when debating about the PRECISE meaning of these words, as you can see in [this Stack Overflow](https://stackoverflow.com/questions/28608015/continuous-integration-vs-continuous-delivery-vs-continuous-deployment) question.

0 commit comments

Comments
 (0)