userConfig never prompted the user at install time in testing, so all credential-needing skills stay on .env.example + .env. Adds the missing .env.example/.gitignore to check-my-timesheet and invoice-prep to match invoice-checker and timesheet-checker.
16 lines
599 B
Text
16 lines
599 B
Text
# Invoice Prep — credentials template
|
|
# Copy this file to .env (in the project root) and fill in the values.
|
|
# .env is gitignored and never committed.
|
|
# Same credentials as check-my-timesheet — one .env can be shared by both.
|
|
|
|
# Tempo API token — generate at: Tempo → Settings → API Integration
|
|
TEMPO_API_TOKEN=
|
|
|
|
# Your Atlassian / Jira Cloud URL
|
|
JIRA_BASE_URL=https://your-company.atlassian.net
|
|
|
|
# The email address you use to log into Jira
|
|
JIRA_EMAIL=your.email@company.com
|
|
|
|
# Jira personal API token — generate at: https://id.atlassian.com → Security → API tokens
|
|
JIRA_API_TOKEN=
|