This post is a continuation of Go – Part 1 – Simple Web Application (Identity API) and requires a PostgreSQL server available, see PostgreSQL – Local on Docker and Cloud on Azure There are many ways of connecting to a database server in Go. One option is GORM, an Object-Relational Mapping library. It makes mapping … Continue reading Go – Part 2 – Connecting to PostgreSQL on Azure (Identity API)
Tag: Go
Go – Part 1 – Simple Web Application (Identity API)
Go is a programming language created by and supported by Google via Open Source project. It has a very nice standard library, some very popular frameworks and it is built for heavy concurrent workloads, being ideal for web services, but also useful and powerful for command line tool projects and much more. My journey with … Continue reading Go – Part 1 – Simple Web Application (Identity API)
Go Installation
After many years using Asp.Net based products for Web pages and APIs, I found myself recently exploring Go lang, so, one more tool to install. It can be found at: https://go.dev/, in the Download area. In my case, Windows download. Open the setup packahe, then Next. Make sure you read and agree with the license … Continue reading Go Installation