Авторизация на сайте с JSON Web Tokenне увидел ни слова о refresh и access.
Встречный вопрос: Что будет если пароль попадёт к злоумышленнику?
скорее всего кривая кодировка, символы и тд
# Start from the latest golang base image
FROM golang:1.13 as builder
# Set the Current Working Directory inside the container
WORKDIR /app
# Copy go mod and sum files
COPY go.mod go.sum ./
# Download all dependencies. Dependencies will be cached if the go.mod and go.sum files are not changed
RUN go mod download
# Copy the source from the current directory to the Working Directory inside the container
COPY . .
# Build the Go app
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main .
# RUN CGO_ENABLED=0 GOOS=linux make build
######## Start a new stage from scratch #######
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
# Copy the Pre-built binary file from the previous stage
COPY --from=builder /app/chatd .
COPY web web
# Expose port 8080 to the outside world
EXPOSE 8080
# Command to run the executable
CMD ["./chatd"]
если вы сейчас работаете, то говорили ли вы о пересмотре своей зп нынешнему работодателю
наняли бывшего сотрудника
Нам нужен крепкий джун наверно, а ты - всё же серьёзный мидл
Большое спасибо за потраченное Вами время. К сожалению, в настоящий момент мы не готовы пригласить Вас на дальнейшее интервью по этой вакансии. Ваше резюме будет сохранено в нашей базе данных и, возможно, мы вернемся к Вашей кандидатуре, когда у нас возникнет такая потребность.
func configurateLogger() {
logrus.SetFormatter(&logrus.JSONFormatter{TimestampFormat: "2006-01-02T15:04:05.999"})
level, err := logrus.ParseLevel("debug")
if err != nil {
level = logrus.InfoLevel
logrus.WithError(err).
WithField("event", "start.parse_level_fail").
Info("set log level to \"info\" by default")
}
logrus.SetLevel(level)
}