Files
query-orchestration/internal/serviceconfig
Jay Brown 2ff6e05ffc Merged in feature/permit-integration-1 (pull request #172)
Permit integration - part 1

* WIP permit integration

* slim down build

* Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/permit-integration-1

* omit swagger from auth

* clean build

* comment

* part 1 completed

this is the initial permitio parts and tests without integration. Also testing.md since we have a new test target `task test:permitio`

* feature flag for no jwt validation

* permit integration

* fix ci unit tests

* ci fix

* build fix

* fix home handler

* fix redirect

* test fix

* update docs for auth
2025-07-11 19:27:14 +00:00
..

Service Configuration

This directory contains the service configuration for the DoczyAI project. Common code that is shared by all of the services in the project.

Note that the library currently supports only mapping ENV (and .env) variables to the root of your configuration struct type. Mapping is by name. See https://github.com/caarlos0/env for rules around tagging.

For example:

type AnyServiceNameConfig struct {
    // BaseConfig has all of the common base configuration that all services should have.
    serviceconfig.BaseConfig // Embed the base configuration

	// add any custom values that this service needs
	SomeCustomStringValue string `env:"SOME_CUSTOM_STRING_VALUE"`
}