Home / Glossary / PaaS (Platform as a Service)
Tech & ITPaaS (Platform as a Service)
By Sitraka Forler · Lecturer, Durham Business SchoolUpdated 13 September 2026 About this site
A managed platform where you deploy your own code and the provider runs the servers.
You bring the application; the provider runs the operating system, the language runtime (such as Python itself), scaling and hardware. Heroku, Google App Engine and Azure App Service are PaaS, and so is Vercel, which hosts EcoFinLearn. Do not confuse it with SaaS: on a PaaS you still write, deploy and fix your own code, and its bugs, data and configuration remain your job.
Example
# inside the git repo of your app: creates the app and a remote called heroku heroku create # the platform builds, runs and serves your code git push heroku main