diff --git a/.gitignore b/.gitignore index 5783294..c211aa4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,34 @@ -# Binaries +# Go bin/ dist/ *.exe -*.dll -*.so -*.dylib - -# Build output +*.test coverage.out +# Dependencies +vendor/ + # IDE .vscode/ .idea/ -# OS -.DS_Store -Thumbs.db +# Logs +*.log # Environment .env -.env.local + +# Certificates +*.pem +*.key + +# Kubernetes Secrets +*.secret.yaml + +# Terraform +.terraform/ +terraform.tfstate* + +# OS +.DS_Store +Thumbs.db diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bfdf78a --- /dev/null +++ b/LICENSE @@ -0,0 +1,5 @@ +MIT License + +Copyright (c) 2026 ETSB Cloud + +Permission is hereby granted, free of charge, to any person obtaining a copy... diff --git a/README.md b/README.md new file mode 100644 index 0000000..b2a4fe1 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# ORION Telemetry + +Telemetry microservice for the ORION Platform. + +## Features + +- Prometheus Metrics +- Health Checks +- Structured Logging +- Kubernetes Ready +- Docker Ready + +## Tech Stack + +- Go +- Gin +- Prometheus +- Kubernetes +- Harbor +- Gitea + +## Build + +go build ./... + +## Run + +go run ./cmd/server +