Deploy V lang CRUD REST API with PostgreSQL on GCP Cloud Run

Learn how to deploy V lang CRUD REST API with PostgreSQL on GCP Cloud Run 📗 Buy the book on “Getting Started with V Programming“ on Amazon Programming Language & web framework: * The REST API that performs CRUD operations is implemented using V programming language with it’s in-built module vweb. Database: * The application talks to a PostgreSQL database with the help “pg“ an in built module that comes with V to interact with PostgreSQL database. Packaging followed for Deployment: * The module implemented will be packaged using a Dockerfile * We will be using the official V lang’s base image thevlang/vlang:latest to build the application code. * We will be using the package to read environment variables from a .env files. We will install this package via VPM V Package Manager Contents 00:00 Intro 01:07 Setting up the Code base to talk to PostgreSQL database 02:45 In
Back to Top