😆 but I don’t recall starting with a vps on this channel. I always used sst to deploy to aws using lambdas. I’ve been using serverless for 5 years on a work project as well and was pretty anti vps until recently when I got my ddos bill.
@impc-lx9gf7 ай бұрын
@@WebDevCody i mean by from title "Why I’ll never deploy to a VM again" to "Serverless might bankrupt you (and how to deploy to a VPS instead)". 🙂
@xoai137 ай бұрын
It’s a process of learning. He learned both, which is good for him.
@impc-lx9gf7 ай бұрын
@@xoai13 agreed 💯👍
@geopopos7 ай бұрын
I think that’s the pattern of the entire industry
@emnul85837 ай бұрын
I've been learning a ton from your VPS deployment content. Keep up the great work!
@dtesta4 ай бұрын
Wow, so the guy that hates VPS and claims "it's not worth it", now finally wakes up. Congratulations. You finally understood that the 20 USD prices you dreamed up in your previous videos are for sites with no traffic. As soon as you get meaningful amount of requests, your 20 USD SAAS crap turns into thousands of USD, while you could have just gotten a 8 core dedicated server with like 64GB of ram at something like Hetzner for 40 EUR and spend a day setting it up.
@aoe4_kachow4 ай бұрын
It’s not a problem if you don’t offer free access. A $100k aws bill means you just got $1m in revenue. Free access and serverless with no limits is playing with fire.
@awefrancisolawumi34064 ай бұрын
Thought it was only me thinking the guy was confused 😅
@theointechs4 ай бұрын
He goes where sponsors tell him to go, that's very sad unfortunately...
@edboss363 ай бұрын
You offer a paid subscription £5 a month. A few people use your SAAS so the server less monthly bill is £30. Then a thousand people suddenly sign up to your app so £5000 a month. Your server less cost will be less than that like £1000. So as long as you do the pricing properly you won’t lose money surely
@dtesta3 ай бұрын
@@edboss36 And if you run a website where users don't pay to use it? Which is probably 90% of all websites...
@patricklepamplemousse8847 ай бұрын
Oh man for one of my clients’ project i had to go through setting up Nginx from the ground up I spent 3 days and 4 nights on it and you just did it in 15 minutes 🤣
@bit0rmack311Ай бұрын
You can use Caddy, it is easier to use than Nginx.
@gamingbud9267 ай бұрын
Holy moly Cody, this is *exactly* what I needed. Coolify in particular. I'm about to launch a large project that I've been working on for a few years, and I have yet to figure out the CI/CD process. This is a Godsend, thanks!
@twitchizle7 ай бұрын
I just reached 1 MAU, i need to scale.
@User948Z7Z-w7nАй бұрын
Make sure you use at least 25 microservices with at least 50 different technology
@stringyGG7 ай бұрын
Don’t forget if you’re using an unmanaged VPS you have to mange security mostly yourself; OS security patches, firewall, security through obscurity like changing default ports etc. Just something for people to keep in mind.
@MarincaGheorghe6 ай бұрын
Yes, he demonstrated a VPS with graphana and docker monitoring but all those ports were public and those servers did not require any permissions from internet users.
@chrisgarre6 ай бұрын
Correct, but I don't think a Managed VPS is an option when using Coolify. You probably won't be allowed by your VPS provider to install Coolify on a Managed VPS since it would interfere with their pre-installed hosting control panel (SPanel, CPanel, etc.).
@zombiesalad27222 ай бұрын
Thank you for this quality content. Deployed my first site all thanks to you! Coolify looks so cool
@djfoo0007 ай бұрын
Is it possible to host your own postgres instance using Coolify to be consumed by your own apps elsewhere (postgres and webapp hosted on different servers)? Can I use cloudflare tunnels to "lock-in" the postgres connection string (instead of a possible non-static IP)? How would you go around hosting your own PG instance to be used by your own apps? Would hosting them on the same Coolify instance help (due to easier setup for Prisma connection without having to deal with exposing DB to public internet, etc)?
@WebDevCody7 ай бұрын
I’m not too sure. I do know coolify has the ability to host a Postgres instance with a button click. I also know cloudflare tunnel support is talked about in their community and I think their docs. I haven’t personally done it so I can’t give the info you need. Personally unless you have a need for multiple VPS, just host your Postgres instance in the same machine as your app. It will give you the lowest latency and should be able to scale up as needed simply by upgrading your vps.
@Shfuntikik7 ай бұрын
@@WebDevCody talked about in their communist :)
@johnwalter80247 ай бұрын
Hi Cody, Can you make a video with Coolify to use multiple servers? Like each server will have their own service for example one server for Postgres, the other one is will be a backend that communicates with that database? And additionally using tunnels with coolify will be very cool.
@RationalDissonances7 ай бұрын
I think now that we have something like Coolify, using SST is like over complicating everything, right? I can't find a really any good scenario that could benefit from a server less with all those hassles and not a simple VPS. or maybe I'm overlooking something?
@edboss363 ай бұрын
When you have periods of very low or very high traffic serverless is better
@mohamedazizhaddad50527 ай бұрын
cool stuff thank you ❤ just one question please why do you recommend vps hosting only for beginners? what is a better alternative hosting for other professionals ?
@WebDevCody7 ай бұрын
I’ve been using serverless on production for 5 years (aws lambda), and honestly it was a mistake imo. The complexity you don’t know you’ll run into due to lambda runtimes is not worth the effort compared to just doing npm run start on a vps and calling it a day. On a larger size project kubernetes gives you the flexibility to not be locked into serverless or a particular cloud, and everything is containerized so if it runs locally you’ll know it’ll work on prod
@mohamedazizhaddad50527 ай бұрын
@@WebDevCody makes a lot of sense thanks again Cody
@daphenomenalz41007 ай бұрын
@@WebDevCody kubernetes is super cool, but when I started learning it and looked forward to deploying it on AWS. EKS was ridiculously expensive and got scared. Is there another way to deploy it publicly for cheaper Btw I am a beginner to AWS, i usually deployed locally with k8s or docker to save costs lol
@sidalisaadi19617 ай бұрын
Is there a way to use a VPC, and let you images and videos be: a) Optimized b) Get's served from a CDN or some bucket
@WebDevCody7 ай бұрын
honestly I'm not sure, I haven't looked that deep into it. In regards to a CDN, as displayed in the video, I point cloudflare in front of my application which means everything will be cached on the cdn. If you store your assets on r2, it by default provides caching if you setup a custom domain.
@ashleytwo7 ай бұрын
Thanks for this video. I just wanted to check my understanding as someone that uses Vercel at the moment but in a "it works so I won't question it" way. Essentially Coolify is the layer that I see going to the Vercel site; manage my projects, see logs, deployments etc. The VPS is the background server which I know is happening behind the scene but I've never really looked into. But it would essentially bring the server "in house" and I'd have more control over it. Got a few projects hosted on Vercel but wanting to expand a bit. I know when I tried to deploy a Stripe project as soon as it was live the fetch from Stripe timed out but a VPS (depending on what I pay for obviously) would give me more control, yes? (I'm aware Vercel has a paid tier but I think if I were to actually pay for something, it is something I'd want more control over)
@WebDevCody7 ай бұрын
You probably hit the 10 second free tier limit on vercel. Yes, a vps is just a blank operating system where you can install and run anything you’d like. Coolify is the dashbaord that I installed to give you a nicer way to deploy your apps to your vps. It uses docker under the hood for building and running your services inside of containers
@ashleytwo7 ай бұрын
@@WebDevCody oh yeah that was definitely the reason (although that's how I learnt about it being a limit) but it was just playing around to see how things work. But it's good to know alternatives. Thanks for taking the time to respond (and so quickly). Docker is one of those things I've been meaning to learn more about for ages, but if it's running in the background and I don't have to learn now that works for me
@elbaraaabuaraki3277 ай бұрын
I was supposed to deploy a nextjs app on a VPS this monday. This is awesome
@justinwlin7 ай бұрын
ahhh so happy u posted this haha. was watching ur other videos about VPS but was wondering when a coolify one would come out. Thx as always 🙏 honestly watching u is amazing cause all ur projects reflect similarly to my own goals and infras. so learning about the approaches u use and comparing and contrasting has rlly expanded my scope
@nachoglro7 ай бұрын
Hey Cody, I love your videos. They’re helpful and really well structured, though sometimes you go faster than I can learn but I’m getting into it. I want to thank you for the hard work you’re putting into the videos. I’ve being facing quite the same situation as you with the serverless but one thing that keeps me going back to it instead of VPS is the maintenance. Like for example, what do you do when having to reset your server due to Linux updates? Or for example Hostinger went down Thursday morning about 2 hours due to their infrastructure maintenance?
@heyandras7 ай бұрын
Nice! Thanks for making this vid! 💜
@WebDevCody7 ай бұрын
thanks for the good work!
@St0rMsk7 ай бұрын
Love the video btw. Qucik question, how do you deploy multiple apps within coolify then?
@WebDevCody7 ай бұрын
I think you just create a new service and specify a new git repo and point a new domain to it. You can have multiple different apps running on the same box easily. They also seem to have a "remote" type of setup where you can have multiple VPS machines all hooked together for load balancing I believe.
@thomaspotterdotexe7 ай бұрын
so, what should I use for me who is newbie? can I limit budget in serverless hosting?
@WebDevCody7 ай бұрын
depends on a lot, what stack you're using, what's your budget, if it's $0 then find free hosting.
@thomaspotterdotexe7 ай бұрын
@@WebDevCody well, my budget is not $0, but certainly not highest, just low cost for small business. The stack is simply just two laravel+vue app, and mysql, the rest is just api services. Oh and gps software like traccar.
@HideBuz7 ай бұрын
There is no such thing as free lunch. Cloud hosts are screwing with clients because they need the money to buy AI GPUs. So everyone still hosting serverless or using micro service architecture are soon going to get a wake up call.
@codernerd70767 ай бұрын
Vercel only get worst!
@lightyear34292 ай бұрын
Could you elaborate about micro services? Isn't it about horizontal scaling which could be done on your own VPS?
@Lorofol5 ай бұрын
This is cool but how do I secure my coolify dashboard? I noticed you just connected directly to the ip of the vps. I assume hostinger can do ip whitelisting? Any better solutions?
@Guergeiro7 ай бұрын
Serverless, the promise of scaling up to millions of users for a business that barely gets a thousand. I think the main problem is that they convince us devs with their free tier. In a VPS you normally start paying on the spot whereas in a serverless environment, the free tier is pretty generous.
@WebDevCody7 ай бұрын
Serverless was intentionally made for one off asynchronous work. Then people started to wrap their entire apis and deploy that into serverless because it scales to zero and also auto scale to high concurrency limits. That brought with it cold starts and everyone started complaining about that. So then they started finding ways to lazy load api controllers to fix the cold start issues (which probably means you should just be using a vps from the start). Depending on the cloud provider, such as aws, it ends up being more convient to hook a lambda up to run various things in the AWS ecosystem. Want to run some code when someone uploads a file to s3? Just add a trigger and invoke a lambda. The complexity starts to come from “how do I bundle and deploy these lambdas”? You end up having a ton of extra code just to support building and deploying these one off lambdas that basically makes something that was trivial to maintain with a traditional MVC framework into a monstrosity that no one understands.
@sleepingsheep51257 ай бұрын
Would like to see how to handle CI/CD with this approach, so that you lint, typecheck, run tests etc., then deploy. I know there is the Github hooks you mentioned, but I always prefer running checks before deploying.
@WebDevCody7 ай бұрын
in coolify you can customize your build actions, so technically you could run whatever you want
@sleepingsheep51257 ай бұрын
@@WebDevCody "Cool"" to know, might have to check this out in my next project!
@naeltahchi22723 ай бұрын
What's your opinion on Caprover? can you do coolify vs caprover video? Again thank you for sharing!
@paulks97717 ай бұрын
Can you host multiple projects on one VPS? for example vercel you pay 20$ and can host as many saas as you want but how about vps? Thanks
@WebDevCody7 ай бұрын
Yes you can host many apps on a single vps
@josealfa047 ай бұрын
How do you deploy the next app in hostinger? Because I think it’s too much to setup, but if you can explain how to do that easy I am going to be so glad!
@WebDevCody7 ай бұрын
I'm not sure what you are asking, I shows how to deploy a next.js application to a hostinger VPS in this video
@EduardoFernandes-y1v6 ай бұрын
Great video! I’m a bit confused though, you don’t need to do anything special with your severless functions?
@sadkebab7 ай бұрын
Thank you Cody, I really wanted to try coolify but I didn't have the energy to wrap my head around it ahahahha
@WebDevCody7 ай бұрын
😆 it’s literally like 1 command, 2 button clicks, and deploy
@sadkebab7 ай бұрын
@@WebDevCody yes, but it would have required the active effort or reading the documentation and the even harder effort of comprehending it... I am not in the mood right now ahahaha
@flowmv7 ай бұрын
Cody as convex is open source now can you perhaps do a video about how to self host it on a VPS? I think it's a great tool overall if we don't have to lock into their servers, def a solid option.
@bingerminn7 ай бұрын
Why does your random example project look better than anything I've ever built 😂
@nuuklu31897 ай бұрын
lol
@WebDevCody7 ай бұрын
😆 I used premade components. Too me 10 minutes to copy them in
@anakinskywalker1924 ай бұрын
@@WebDevCody Which library? That footer background is beautiful
@WebDevCody4 ай бұрын
@@anakinskywalker192 probably the free tailwind components
@anakinskywalker1924 ай бұрын
@@WebDevCody Sadly could not find, and i spent a lot of time searching. Its the banner behind your "email to subscribe". If you could find more specifically I would appreciate it so much. It would be perfect for an app I'm making.
@MarincaGheorghe6 ай бұрын
I don't understand how Cloud flare DDOS mitigations can affect your hosting on the orher VPS provider you tried here. You only used Cloud flare for DNS after all ?
@daphenomenalz41007 ай бұрын
Is there a cheaper way to deploy Kubernetes? EKS is ridiculously expensive, so for now i use local deployment only to avoid that. Pls suggest, i am fairly new to AWS
@WebDevCody7 ай бұрын
If you don’t want a managed k8s then yeah you might need to do it all manually? What about DO k8s?
@daphenomenalz41007 ай бұрын
@@WebDevCody ohhh I forgot🤦♂️, I have dabbled through managed k8s before, but completely forgot about that. Sry, for that silly question 😅 Will checkout digital ocean too, thnx
@sandip_16986 ай бұрын
How can we scale nextjs app hosted on VPS with coolify?
@frank136217 ай бұрын
Do you get your domains from Hostinger as well? Is S3 still the way to go for an app with a lot of image storage?
@WebDevCody7 ай бұрын
recently I've been using cloudflare for my domains, before that google domains and namecheap. I do think hostinger provides 1 free domain with a VPS subscription. S3 is still probably the best option, but I've also been trying to use cloudflare R2 which works pretty well.
@underflowexception7 ай бұрын
Does Vercel not have a spend limit?
@WebDevCody7 ай бұрын
Yes they added that within the year I think
@nickwoodward8197 ай бұрын
@@WebDevCody Not for the free tier - but they claim the free tier is completely free regardless of what happens.
@WebDevCody7 ай бұрын
@@nickwoodward819 right but you can’t use the free tier to run a business. Idk what type of apps y’all are building but I’m not trying to deploy apps just for fun.
@market-mastery-pro7 ай бұрын
@@WebDevCody So what do you recommend for someone who's currently set up using firebase? should I move over to aws or setup my own vps? thanks again
@nickwoodward8197 ай бұрын
@@WebDevCody I mean sure? It's still useful to know you can't get stung on non-production apps that are deployed?
@youcefwippert7 ай бұрын
What about a Multi Tenant Plattform project that i previously built using Vercel Domains API. Is there a way to set it up with a VPS?
@omereker88247 ай бұрын
Or you can pay 20 bucks per month to vercel which has both under attack mode and a firewall features as well as the monthly budget limits so you can get emails. I dont wanna bloat my hard drive with docker, and I don’t understand the problem with using a serverless platform if they address the concerns like vercel does?
@WebDevCody7 ай бұрын
When your app gets more traffic you might start to understand as your bill creeps over your provider limits.
@omereker88247 ай бұрын
@@WebDevCody how much traffic are we talking and isn’t there a work around for this because whats the point of using a paas if it wont scale
@ezzabuzaid7 ай бұрын
@@omereker8824 You'll only feel this when you woke up on an email telling you to pay $100k
@GreatTaiwan5 ай бұрын
@@omereker8824 are you welling to spend the money ? in the end Vercel is intop of AWS at one point it will be cheaper to do AWS or straight other IaaS another thing is what if none of the vercel regions is good for you ? also here he's hosting a Next app what if you had more, something like many microservices (one in Spring few in FastAPI or Gin then few DB) how would you do that with all the other components needed (Queueing, IAM..etc) this route will be needed at some point in time, I mean you are talking about scale, so what scale does a simple Next app have
@ShivGamer7 ай бұрын
What should be the deciding factor when considering where to deploy the project. I mean how can i decide if EC2 is better or some other platform which provides VPS?
@WebDevCody7 ай бұрын
Read reviews about customer service, down time, ease of their user interface, cost, resource specs, etc.
@ShivGamer7 ай бұрын
@@WebDevCody Cool, thanks
@endertotem43543 ай бұрын
I appreciate seeing the evolution from serverless to vps. It’s a dilemma! I wonder if there are many developers who’ve jumped in and learned enough devops to host their own stuff and regretted it later.
@BlazeShomida7 ай бұрын
Have you tried vercel firewall? It's meant for things like ddos attacks/unauthorized access.
@WebDevCody7 ай бұрын
Nope, it sounds cool though
@BlazeShomida7 ай бұрын
@@WebDevCody yeah Lee showed it off at the recent vercel ship conference.
@siya.abc1237 ай бұрын
R.I.P to all those he told to pay for everything in the recent past. That's why I keep saying, don't take JavaScript influencers too seriously. Learn the things they tell you to pay for.
@RemotHuman7 ай бұрын
just found out vercel has a feature where it will shut down your services if you go over a spend limit. that's all cloud providers really need to implement to solve the problem talked about at the start of the video right? still probably cheaper for you to use a vps though I'm guessing, vs a layer on a layer on a vps (vercel->aws->servers)
@WebDevCody7 ай бұрын
Yes, they have spend limits and alarms. That first tweet was user error, but it seems like users don’t know how to properly configure their stuff
@snivels7 ай бұрын
What are you using for that top loader? What xhr/request library and what component if any? Thanks man
@WebDevCody7 ай бұрын
Nextjs top loader its an npm library
@Jojo-ye5ix4 ай бұрын
Keep in mind that the minimum requirement for Coolify alone is 2GB of memory and 30GB storage.
@maxmaximus77737 ай бұрын
Can you host multiple websites on coolify? And how many next js sites would you say would be the limit for the 8gb ram configuration you picked?
@WebDevCody7 ай бұрын
Yes, I’m sure you could get a lot depending on if you use image optimization or not. When I run next apps they maybe use 500mb
@LiquidMamba7 ай бұрын
Was thinking how to deploy my SaaS app securely without getting DDoS'ed and get a bill would create a generational debt lol. This video was so helpful for me... Keep up your good work Cody! and BTW a kind request :) Can you make a video on making a NextJS + Pipedream tutorial.. KZbin lack tutorials on Pipedream + NextJS..
@ATrevorWaters7 ай бұрын
Hey! Regarding the DDoS you had, I wonder what you think about the new Vercel Firewall?
@WebDevCody7 ай бұрын
I haven't tried it but I assume it's a good feature to have built in directly into your host.
@igortalic20217 ай бұрын
Wait but AWS should have billing options for lambda so you can limit the cost right? If that's the only reason for moving of lambda that should be solvable I imagine
@WebDevCody7 ай бұрын
Aws has spending alerts, but they don’t have any type of kill switch. You’d need to implement that yourself
@igortalic20217 ай бұрын
@@WebDevCody OMG that's crazy, well good to know 😁 Thanks for golden info like always! 😊
@lardosian7 ай бұрын
Have you tried to use any of its github actions?
@tarakrsn7 ай бұрын
Hi Cody. What do you think about deploying on Cloudflare? I'm building some projects, which are not in business size, but just projects for my portfolio 🤔
@WebDevCody7 ай бұрын
I haven't used cloudflare pages before
@tarakrsn7 ай бұрын
@@WebDevCody I see. thanks for your reply!
@daphenomenalz41007 ай бұрын
Are you still doing go? 👀 Or even rust nd planning on making some content about that.
@WebDevCody7 ай бұрын
Haven’t touched go in a bit. I did enjoy using it, so I’m not writing it off, I just have so many other things going on that use typescript already it’s hard to justify spending time to learn it “just because”
@gkiokan7 ай бұрын
What about Securing your VPS? What is the bare minimum you should take care about?
@Jeanpierrec197 ай бұрын
Registration screen sending a password over plaintext http? Should probably be passing that through Caddy/Nginx with a Let's Encrypt cert at the very least...
@SonAyoD7 ай бұрын
Any reason as to why you’re using turso over convex db?
@WebDevCody7 ай бұрын
The database portion wasn’t the important part of this video. Also this was a throw away project.
@rogueturnip7 ай бұрын
you should always turn on alerts and anomaly detection for any serverless setup.
@WebDevCody7 ай бұрын
alerts don't help when you're sleeping. I've only seen a few serverless options provide a spending limit kill switch.
@rogueturnip7 ай бұрын
very true. the kill switch would be a nice feature. i wonder if pre paid credit cards work. 😊
@perspectivelevel79697 ай бұрын
Pls cody record an example of nextjs authjs without serverless middleware
@mattvalgreen3 ай бұрын
That's definitely the video I was looking for! Thank you so much! +1 sub
@rtorcato7 ай бұрын
how would scale a vps with coolify on it?
@WebDevCody7 ай бұрын
when you say scale, what requests per second do you mean? I think coolify supports loadbalancers and hosting your application on multiple servers if needed
@Fullflexno7 ай бұрын
Cool video, thank you for showing this and providing a Discount code! Love it!
@RemotHuman7 ай бұрын
can we be sure that coolify is secure?
@WebDevCody7 ай бұрын
can you be sure anything is secure? no one looks through any of the open source code. it is all open source though github.com/coollabsio/coolify
@RemotHuman7 ай бұрын
@@WebDevCody bigger projects are probably more secure because of more eyes and history. also cloud providers are more secure against hacking/vulnerabilities (not against poor configuration by you) because of a stronger financial incentive to be, and they probably will have a bug bounty program to catch more bugs.
@GrantSR24 күн бұрын
I get the distinct impression that the purpose of this video is to show off that YOU know how to do said thing, without ever actually telling us how to do said thing.
@someguyO2W4 ай бұрын
Didn't I see a video from 8 mo ago saying to go serverless or something?
@WebDevCody4 ай бұрын
probably yes
@FranFiori947 ай бұрын
You should block 8000 port except for your Ip from hostinger's firewall
@gkiokan7 ай бұрын
First of all, the shaved beard looks better on you. 2nd, Serverless may be helpfull and usefull, but as you explained, it is an ticking bomb. So, just Stick with your VPS and gg. Once your Project grow up for mass usage, then we can talk about multiple VPS Instances that can produce more i/o.
@WebDevCody7 ай бұрын
my wife thinks so as well
@dareolumide82877 ай бұрын
The first story sounds like an experience a guy i knew in uni had
@kosnowman4 ай бұрын
I think all web dev must learn how to deploy on a linux server, setup ufw, ssh, fail2ban, nginx / apache, HTTPS, certbot etc.
@codernerd70767 ай бұрын
Yeah, one of the main reasons I hate serverless... I'm a control freak and don't like monthly cost surprises
@butwhothehellknows7 ай бұрын
Good job babe!!!!
@haruccigr7 ай бұрын
What I don't like about KZbinrs is that they don't give their honest opinion, they just make videos for their sponsors. If you go 1 year ago this dude had video about "why he won't use VPS but only 3rd party services". Now the dude gets paid by VPS provider to promote a VPS.
@WebDevCody7 ай бұрын
Imagine living in a world were changing our perspective is forbidden; that’s the world you think we live in
@minidragonlady7 ай бұрын
Month 1: Vercel / AWS Month 2: VPS Loop forever .... No, seriously, I don't understand these stuffs anymore. What to choose? What do these "techie guys" on KZbin want to tell us to do? Though, imo, AWS == taking your money endlessly. But I don't even have a credit card so can't even test the free tier anyways :)))))
@Lexaire7 ай бұрын
Follow the money. If it's a sponsored video, know that the content is bs.
@WebDevCody7 ай бұрын
If you don’t have a credit card how do you expect to host your apps? Hosting costs money. Like I said, serverless has its own use cases and gotchyas, so if you are not aware of them, don’t use it. Vps requires you to understand how to ssh into a machine, run a script, then configure coolify.
@khardian28237 ай бұрын
wow, it's almost as if people are finding better solutions for their use cases that differ from the previous solution they used for a completely different problem.
@daphenomenalz41007 ай бұрын
You can use a debit card
@timelydevs7 ай бұрын
@@Lexaire For the most part I think you're correct. But serverless computing is usually overkill for most projects. A simple VPS and an afternoon of reading docs to setup SSL, Nginx, Cloudflare, etc will suffice. Or you can end up in vendor lock-in by coding your solution around a serverless environment, spend days or weeks learning the serverless providers offerings, and then get hit with a massive bill. Providers like Linode and Digitalocean also have "app service" offerings that allow you to deploy kinda like vercel or AWS lambda but with more controls. Additionally, the VPS setups are more widely used in business environments due to the level of control the business can exert over the deployment environments. Especially since you can install the docker engine and setup docker images, docker swarms, or kubernetes locally and cut down on wasteful spending to the serverless providers for docker or k8 management. I do think that when creators take a sponsor directly related to the video that it's a red flag. But, @webdevcody did a good job at objectively explaining the reasoning for using a vps over a serverless environment for beginners. I think things get a little murkier once you step into the world of enterprise software or large scale user bases. But for his audience he explained the pros/cons in a way that would make sense. And if people are skeptical, I'd recommend they look into the pricing models and play with the calculators. The cost of serverless creeps upwards pretty aggressively. And it really can sink businesses in cost. You have to remember that anything you do in serverless environment can be done on a vps. (really serverless environments are vps instances running some sort of hypervisor to manage the resources on the shared instance. Unless you reserve an instance to yourself. Which sends the costs up even higher.)
@mariusz38915 ай бұрын
nice bait and switch...thumbnail is "Serverless might bankrupt" with bill in front and entire video is just hostinger ad :D
@filipniklas7 ай бұрын
Set max instances to 1
@rajaaluri70096 ай бұрын
Web Dev Cody journey vercel -> aws sst -> vps
@smnomad92767 ай бұрын
Day 49 of asking cody what the name of his vs code theme is🙏
@WebDevCody7 ай бұрын
At this point my community answers that question for me 😆
@dawidgrabowski7 ай бұрын
Bearded Theme Stained Blue
@smnomad92767 ай бұрын
@@dawidgrabowski Is that really the name or are you trolling lol?
@dawidgrabowski7 ай бұрын
@@smnomad9276 Just search for Bearded theme and after installing it pick one with the name mentioned above.
@gold-junge917 ай бұрын
U dont have make your code wrong. But your testing was wrong 😅 maybe you can make a video how to write codes for real testing, with creating Limit analysis and equivalence class creation, these are 2 methods that should be considered in every test.
@WebDevCody7 ай бұрын
I have no clue what you just asked
@daphenomenalz41007 ай бұрын
Where is wrong code?? What are talking about, this was about cloud
@Steel00797 ай бұрын
Golden content
@greendsnow7 ай бұрын
that's a big finger against vercel
@WebDevCody7 ай бұрын
I think vercel is fine, they have spend limit and alarms in place. I just choose not to use them. I personally like running containers
@devfren7 ай бұрын
Raspberry pi army in my basement >
@aymenbachiri-yh2hd6 ай бұрын
THank you so much
@WiseApe17 ай бұрын
It's just robbery. There must be fixed rates or some kind of limits.
@WebDevCody7 ай бұрын
There are, this person didn’t turn them on
@patolorde7 ай бұрын
Pretty cool
@thejonte7 ай бұрын
Hetzner have way way better bang for buck
@WebDevCody7 ай бұрын
They wanted my passport for me to get a server. That was a no for me
@nickwoodward8197 ай бұрын
@@WebDevCody What? Really? Jesus that's a shame, was going to look into them too
@KavkazIQE7 ай бұрын
Dont they have servers only in eu? And how is the latency ?
@Krawcu_7 ай бұрын
very nice
@GrantSR24 күн бұрын
Just so you know, you don't have to talk a thousand words per minute. You actually make more money if you talk at a normal pace and people watch longer. You are just flying by so many things that it is impossible to follow. Yes, I can slow down thee video. But, I shouldn't have to .
@jesulobajohn84687 ай бұрын
Imagine failing because of an apostrophe
@WebDevCody7 ай бұрын
😆 my linter wasn’t configured correctly
@prashlovessamosa7 ай бұрын
Thumbnail 😅
@mewizinho7 ай бұрын
awesome
@mubinsayed7 ай бұрын
I think this video is biased
@WebDevCody7 ай бұрын
I do think a vps is a good option depending on project needs