- Docker daemon or Podman (see below under Replacing Docker)
- Python 3 NOTE (2023.10.12): the project fails with Python 3.12 due to an issue with numpy
- python-poetry to manage dependencies. (Install: https://python-poetry.org/docs/#osx--linux--bashonwindows-install-instructions)
Check the pyproject.toml for Python requirements. These are handled by Poetry.
Many keys are required. See Runtime environment below.
# Build the image
make dev
# Run a container with the built image
make run
# Browse http://localhost:8000
# For more details about the different make targets
make help
the run target uses the environment variable TEMPO_CONFIG_PATH, described below, as a mount point if set
ifneq ($(TEMPO_CONFIG_PATH),)
vmounts=-v $(TEMPO_CONFIG_PATH):/tempo
else
vmounts=
endif
To run a container that ignores the optional environment variable
make bare
# Browse http://localhost:8000
To use podman
, you can set the DOCKER
variable to podman
, e.g. make DOCKER=podman run
To run on GitBash for Windows, you can set the DOCKER
variable to winpty docker
, e.g. make DOCKER='winpty docker' run
.
Docker for Windows satisfies the Docker requirement.
Key | Notes |
---|---|
TEMPO_KEY (required) |
Tempo API key. Can be generated from Tempo → Settings (left sidebar) → API Integration. |
TEMPO_CONFIG_PATH (optional) |
To be able to add secret configurations there is a default config path /tempo where secrets can be mounted as files. For development purposes the environment variable TEMPO_CONFIG_PATH overrides the default value for config files. |
TEMPO_LOG_LEVEL (optional) |
Tempo uses logging for logging, with the default log level WARNING . This can be changed by setting the environment variable TEMPO_LOG_LEVEL to any value in ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] |
JIRA_USER (required) |
A Jira user account . A valid jira user account of format user@domain.com |
JIRA_API_TOKEN (required) |
Jira API key for JIRA_USER. Can be generated from here: https://id.atlassian.com/manage-profile/security/api-tokens Jira → Create API token → give a meaningful name for future reference. |
NOTION_KEY (optional) |
Notion API key. Obtained from https://www.notion.so/my-integrations. You must be an owner of the workspace containing the databases. |
NOTION_FINANCIAL_DATABASE_ID (optional) |
Requires: NOTION_KEY a database ID from notion is needed. The database should include the column names Month , EUR Start , SEK Start , external-cost , and real-income . |
NOTION_WORKINGHOURS_DATABASE_ID (optional) |
Requires: NOTION_KEY a database ID from notion is needed. The database should include the column names User , Daily , Delta , Start , and Stop . |
NOTION_ALLOCATIONS_DATABASE_ID (optional) |
Requires: NOTION_KEY a database ID from notion is needed. The database should include the column names Allocation , Assign , Task ID , Unconfirmed , and Date (as a date range). |
NOTION_CREW_DATABASE_ID (optional) |
Requires: NOTION_KEY a database ID from notion is needed. The database should include the column names Person , Currency , and Total Cost . |
To find the ID for a specific database in Notion, see this link.
To check that the dB ID's are correct there is a simple test script in the scripts
folder. When running it will fetch the dB content and save it in local JSON files for further perusal.
Metrics is expecting a simple layout for the optional configuration files. A folder structure found in /tempo
or, if set, in ${TEMPO_CONFIG_PATH}.
.
└── rates
└── data.json
The rates file contains 4 lists
- Default is a list with project issue keys, rate and currency
- Exceptions is a list of with exceptions if different users have a different rate for the same issue key
- Internal is a list of tempo project is considered internal, even if they are set to billable in tempo
- Currency is a list of exchange rates, € is the currency used in the metrics, so for other currencies a simple conversion is used
{
"Default": [
{
"Key": "CUS-1",
"Rate": "100",
"Currency": "EUR"
},
{
"Key": "AB-1",
"Rate": "1000",
"Currency": "SEK"
},
],
"Exceptions": [
{
"Key": "CUS-1",
"Rate": "125",
"User": "Alice Architect"
}
],
"Internal": [
{
"Key": "US"
}
],
"Currency": [
{
"SEK2EUR": "0.1"
}
]
}
make docs
Then open docs/_build/html/index.html