How to deploy your NodeJS / Flask application to Qovery in less than five minutes

All my prayers have been answered once I found Qovery. It’s a super affordable hosting service that is amazingly powerful and gives you maximized ease.

If you are still clinging to Heroku, Netlify, Terraform, etc; consider reading these articles.

Q…


This content originally appeared on DEV Community and was authored by

All my prayers have been answered once I found Qovery. It's a super affordable hosting service that is amazingly powerful and gives you maximized ease.

If you are still clinging to Heroku, Netlify, Terraform, etc; consider reading these articles.

Okay, so that being said, I will show you how to deploy a nodeJS and python application to Qovery in less than five minutes.

Deploying a NodeJS Application

I'm assuming you've already signed up for Qovery, developed your app, and put all the code into a github repository. Those are the main steps you need to do and the rest is a breeze.

The next step is to create a file called Dockerfile in your application. Assuming you are deploying an expressJS app, your dockerfile should look like this:

FROM node:14
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . .
RUN npm install
EXPOSE 3000
CMD ["node", "index.js"]

Also, you don't even need to have docker installed. Qovery takes care of all that for you.

After that, push to the git repo and update it. Next, you're going to want to create a new project on your qovery console.

Next, create an environment in that project.

Add your first app, connect to the correct git repo, and finally, a very important step, set the build mode to Docker, and set the port to 3000.
You can technically use a different port to add your app on, but in this tutorial, let's use 3000. Make sure your app is listening on that port!!

If you want to change that port, make sure you change the code in your dockerfile, the EXPOSE 3000 to EXPOSE <your-port>.

Screen Shot 2021-09-17 at 9.11.45 AM

Update your settings if you want, then click the Actions button and then deploy your app. Once it's in a RUNNING state, your app is ready!!
Screen Shot 2021-09-17 at 9.16.46 AM

Deploying your Python Flask app

Sign up for qovery, create your project, and then link it to a github repo. Add your dockerfile into your app. It should look like this:

FROM python:3.8-slim-buster
WORKDIR /usr/src/app
COPY . ./
RUN pip install -r requirements.txt
EXPOSE 3000
CMD ["python","app.py"]

Make sure your app is listening on port 3000. You don't need to install docker.

Push your code to the git repo, create a new project, a new environment, and then an app. Make sure the build mode is Docker and not Buildpacks.

Click the Actions button, deploy your project, and you should be ready to go.

I hope qovery is something you'll be enjoying from now on. It is something that is super amazing, secure, and reliable.

Don't forget to follow the Founder of Qovery on DEV!

Happy Coding (and deploying)!


This content originally appeared on DEV Community and was authored by


Print Share Comment Cite Upload Translate Updates
APA

| Sciencx (2021-09-17T14:25:12+00:00) How to deploy your NodeJS / Flask application to Qovery in less than five minutes. Retrieved from https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/

MLA
" » How to deploy your NodeJS / Flask application to Qovery in less than five minutes." | Sciencx - Friday September 17, 2021, https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/
HARVARD
| Sciencx Friday September 17, 2021 » How to deploy your NodeJS / Flask application to Qovery in less than five minutes., viewed ,<https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/>
VANCOUVER
| Sciencx - » How to deploy your NodeJS / Flask application to Qovery in less than five minutes. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/
CHICAGO
" » How to deploy your NodeJS / Flask application to Qovery in less than five minutes." | Sciencx - Accessed . https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/
IEEE
" » How to deploy your NodeJS / Flask application to Qovery in less than five minutes." | Sciencx [Online]. Available: https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/. [Accessed: ]
rf:citation
» How to deploy your NodeJS / Flask application to Qovery in less than five minutes | | Sciencx | https://www.scien.cx/2021/09/17/how-to-deploy-your-nodejs-flask-application-to-qovery-in-less-than-five-minutes/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.