Nest: Quick Overview
The biggest rule of programming is--DRY (Don't Repeat Yourself).
If one wants to write a more efficient ...
For further actions, you may consider blocking this person and/or reporting abuse
Hey is there any free alternative for deployment?
Hey, you can use Heroku with their free plan for a start.
Sadly there is no more free plan in heroku :(
Yup that's true.
Try Vercel.
There is no proper resource for deploying a NestJS application of Nx Monorepo
Try Cyclic
Is there any example for deploying NestJS application or any resource at all?
I am keep getting this error
I'm also trying to deploy a NestJS App @saralufi , did you ever get this to work? If not, what did you do? Any help / suggestions would really help me out, because i'm new to deploying apps and NestJS. Thanks!
Ok so i tried deploying it and i am getting the same error as you :(
I just got it to work! Removed some packages i didn't need and re wrote some of the code to use lighter weight dependencies, and now everything works!! 🥳 🥳
What port are you using for your main.ts? await app.listen(process.env.PORT || 3000); I'm not sure if cyclic has a specific port or not. It builds fine but get this when I try to access my api via swagger - [CYCLIC] ERROR: No response from server on port 3000
Found this guide on deploying NestJS on Vercel if anyone is wandering about a free option too - dev.to/leduc1901/how-to-deploy-you...