Sobes.tech
Senior

Milline tehnoloogiline virn kasutati viimases töökohas?

sobes.tech AI

Vastus AI-lt

In the last workplace, the following technological stack was mainly used:

  • Programming language: Go (Golang) for server logic and microservices.
  • Database management system: PostgreSQL for data storage.
  • Containerization systems: Docker for packaging applications.
  • Orchestration: Kubernetes for managing containers and scaling.
  • CI/CD tools: Jenkins and GitLab CI for automation of build and deployment.
  • Monitoring: Prometheus and Grafana for metrics collection and visualization.

Example of using Go for a simple HTTP server:

package main

import (
    "fmt"
    "net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello, World!")
}

func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":8080", nil)
}