/go-password-auth-example

Implementation of simple password authentication in Go

Primary LanguageGo

Password authentication in Go

Read the blog post here.

This repository is an implementation of simple password based authentication and storage in Go. Passwords are stored in a Postgres DB instance.

To run the application:

  • Create a postgres DB and a users table using the users.sql.
  • Start the application with the commands: go build and ./go-password-auth-example
  • Test the application with the requests in the test.http file