У нас вы можете посмотреть бесплатно Go Realtime Chat Part 1: authentication + db connection setup (clean architecture, cookie-based JWT) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is part 1 of the realtime chat application built with Go, Next, and Typescript. In the following part, we will set up the websocket endpoint and test our connection. In this part, we will: 1. Pull the postgres image from the Docker hub and create the go-chat database 2. Set up our database to connect to the postgres on the specified port, and add a db migration file with golang-migrate 3. Start building the architecture with the handler, service, and repository layers to create the /signup, /login, and /logout endpoints @TECHSCHOOLGURU does an awesome job explaining at how you can use the refresh token to manage user session here: • [Backend #37] How to manage user session w... Github repo: https://github.com/dhij/go-next-ts_chat sql library: https://pkg.go.dev/database/sql lib/pq: https://github.com/lib/pq golang-migrate: https://github.com/golang-migrate/mig... golang-jwt: https://github.com/golang-jwt/jwt bcrypt: https://pkg.go.dev/golang.org/x/crypt... gin: https://github.com/gin-gonic/gin