This guide will help you set up a PostgreSQL container, configure JWT authentication, and test the authentication flow using different tools.
Before proceeding, ensure you have the following installed:
- Docker 🐳 (For running PostgreSQL in a container)
- Postman or cURL (For API testing)
- Go (For running the backend)
- OpenSSL (For generating JWT secrets securely)
🔹 Run the following command to start a PostgreSQL container:
docker run --name jwt-auth-db -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=password -e POSTGRES_DB=jwt_db -p 5432:5432 -d postgres
--name jwt-auth-db
→ Container name-e POSTGRES_USER=admin
→ Set the default PostgreSQL user-e POSTGRES_PASSWORD=admin
→ Set the default PostgreSQL password-e POSTGRES_DB=jwt_db
→ Set the default database name-p 5432:5432
→ Expose PostgreSQL on port 5432-d postgres
→ Run the container in detached mode
🔹 Check running containers:
docker ps
🔹 Access the PostgreSQL shell:
docker exec -it jwt-auth-db psql -U admin -d jwt_auth
🔹 List tables (after the Go app runs the migrations):
\dt
There are multiple ways to generate a secure JWT secret key.
openssl rand -base64 32
This generates a random 32-byte secret key.
python3 -c "import secrets; print(secrets.token_hex(32))"
JWT_SECRET=mysecurekeygeneratedhere
🔹 Create a .env
file in the project root directory:
# PostgreSQL Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_USER=admin
DB_PASSWORD=password
DB_NAME=jwt_db
# JWT Secret Key (Replace with your generated key)
JWT_SECRET=mysecurekeygeneratedhere
If you prefer not to use a .env
file, you can export variables manually in your terminal:
export DB_HOST=localhost
export DB_PORT=5432
export DB_USER=admin
export DB_PASSWORD=password
export DB_NAME=jwt_db
export JWT_SECRET=mysecurekeygeneratedhere
Ensure you have Go installed, then run:
go run main.go
🚀 Your API is now running!
- Method:
POST
- Endpoint:
/#
- Headers:
Content-Type: application/json
- Body:
{ "username": "admin", "password": " " }
{
"token": "your_generated_jwt_token"
}
- Method:
GET
- Endpoint:
/protected
- Headers:
Authorization: Bearer <your_generated_jwt_token>
{
"message": "Welcome to the protected route!",
"user": "admin"
}
{
"error": "Missing token"
}
{
"error": "Invalid token"
}
-
Login and Get a Token
- Open Postman and make a
POST
request tohttp://localhost:4000/#
- Add the JSON payload:
{ "username": "admin", "password": "" }
- Click Send, and copy the
token
from the response.
- Open Postman and make a
-
Access Protected Route
- Make a
GET
request tohttp://localhost:8080/protected
- Go to the Headers section and add:
Authorization: Bearer <your_token>
- Click Send and verify the response.
- Make a
If you prefer the terminal, you can use cURL
:
curl -X POST http://localhost:4000/# -H "Content-Type: application/json" -d '{
"username": "admin",
"password": ""
}'
curl -X GET http://localhost:4000/protected -H "Authorization: Bearer <your_token>"
🔹 Stop the container:
docker stop jwt-auth-db
🔹 Remove the container:
docker rm jwt-auth-db
You have successfully:
✅ Set up a PostgreSQL container using Docker
✅ Created and managed environment variables
✅ Configured JWT authentication in your Go backend
✅ Tested the authentication process using Postman and cURL
🔥 Happy coding! 🚀