How can I make a Go setup reproducible?
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
I created this first table named 'bookstore' where Primary Key is book_name: create table bookstore (book_name varchar primary key, author varchar, price decimal); I am trying to create a second table named 'name' where name is primary key. I want to make this primary key- author.name as a foreign key of bookstore.author. create table author (name varchar pr
I'd like to have 'n' debian installed, not once per version, but litterally 'n' installations of the same debian 12. Each instance should have a different set of php/nginx|apache/mysql|mariadb Is it possibile, for first thing, to install multiple time debian 12 on the same wsl2 on the same windows 11 pro host? If yes, can multiple apache|nginx instances be r
I have problem regarding pulling docker-dev in a docker image for making my development environment. When I tried to pull docker-dev, I got an error like "docker manifest not found." Can anyone help me out with this error? I want to know about the docker failed to initialize error which I'm getting right now. The error is like this: I tried so many things li
A performance change should improve the measured workload without sacrificing correctness or wasting capacity. Which measurements and bottlenecks should be considered first?
What I try to do is to enable Standard Logging for a CloudFront distribution, via AWS console, as in the picture below: I have set the following S3 Bucket Policy: { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::931426637260:user/relu" }, "Action": [ "s3:GetBucketAcl", "s3:PutBucketAcl" ], "Resource": "arn:aw
I know that this question has been asked other times but I didn't find a solution to this problem! I downloaded PostgreSQL 13 with pg Admin 4 and when I open it for the first time after installation it asks me for the master password that I was asked to set during installation, after I give the master password and this gets accepted I try to connect to the d
In this fictional recovery exercise, an operator selects a point before an accidental data change. The team expects existing application connections to switch automatically when restore completes. The database is Azure PostgreSQL Flexible Server. What should the recovery runbook include?
I have a DB server running as a Compute Engine VM, and an API running on Cloud Run. Both are part of the same project. I want the DB VM to only be accessible from the Cloud Run code. At first I thought this should just work because the firewall has a "default-allow-internal" rule that should apply to every machine in the project. However I was still getting
answered · 02 Jan 2022, 20:55 UTC