* Add: skeleton suite for command tests (#119) * test naming updated * fix imports, remove old references * added code coverage badge * Add: coverage environment * Fix: Readme hyperlink to coverage workflow * grab coverage pct from env * Update: gist hyperlink * color range on coverage * fix contributing, simplify coverage assessment * lmiit coverage to master, add branch naming conventions --------- Co-authored-by: Kevin Dang <77701718+kevinthedang@users.noreply.github.com>
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import { getEnvVar } from './utils/index.js'
|
|
|
|
export const Keys = {
|
|
clientToken: getEnvVar('CLIENT_TOKEN'),
|
|
model: getEnvVar('MODEL'),
|
|
clientUid: getEnvVar('CLIENT_UID'),
|
|
ipAddress: getEnvVar('OLLAMA_IP'),
|
|
portAddress: getEnvVar('OLLAMA_PORT'),
|
|
} as const // readonly keys
|
|
|
|
export default Keys |