init: scaffold auth-microservice repository structure

This commit is contained in:
marcus 2025-10-18 16:52:32 +00:00
parent 4391d8ba1e
commit 2fe65ac6f7
14 changed files with 24 additions and 11 deletions

1
Dockerfile Normal file
View File

@ -0,0 +1 @@
Dockerfile — placeholder

10
LICENSE
View File

@ -1,9 +1 @@
MIT License MIT License — see git history
Copyright (c) 2026 marcus
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
# auth-microservice Makefile
.PHONY: all
all:
\t@echo 'build target TBD'

View File

@ -1,3 +1,3 @@
# auth-microservice # auth-microservice — README
Authentication service (JWT, OIDC, refresh tokens) (Initial — see git history.)

2
cmd/auth/main.go Normal file
View File

@ -0,0 +1,2 @@
// cmd/auth/main.go — auto-generated stub
package auth

1
config/auth.yml Normal file
View File

@ -0,0 +1 @@
# config/auth.yml

1
docker-compose.yml Normal file
View File

@ -0,0 +1 @@
# docker-compose.yml

1
go.mod Normal file
View File

@ -0,0 +1 @@
go.mod placeholder

1
go.sum Normal file
View File

@ -0,0 +1 @@
go.sum — placeholder

2
internal/jwt/jwt.go Normal file
View File

@ -0,0 +1,2 @@
// internal/jwt/jwt.go — auto-generated stub
package jwt

2
internal/oidc/google.go Normal file
View File

@ -0,0 +1,2 @@
// internal/oidc/google.go — auto-generated stub
package oidc

View File

@ -0,0 +1,2 @@
// internal/store/postgres.go — auto-generated stub
package store

2
pkg/middleware/auth.go Normal file
View File

@ -0,0 +1,2 @@
// pkg/middleware/auth.go — auto-generated stub
package middleware

2
pkg/middleware/cors.go Normal file
View File

@ -0,0 +1,2 @@
// pkg/middleware/cors.go — auto-generated stub
package middleware