14 lines
755 B
Bash
14 lines
755 B
Bash
# Gitea connection for the library-manager skill.
|
|
# WARNING: contains a secret (GIT_TOKEN) in plaintext - keep this skill PRIVATE.
|
|
# Use a token scoped to these repos (repository: write) and rotate periodically.
|
|
GIT_HOST=gitea.vecmocon.com
|
|
GIT_USER=nitishKumar
|
|
GIT_TOKEN=
|
|
# Target repos — TWO now (set these to the exact repo names on your Gitea):
|
|
# SKILL_REPO : holds this skill's own files (SKILL.md, scripts, assets, ...).
|
|
# LIBRARY_REPO : holds components, one folder per Class (Diode, IC, ...); inside each,
|
|
# one MPN_make_typeid/ folder per part with { xlsx, datasheet, symbol,
|
|
# footprint }. (Replaces the old DFS + Parameters repos.)
|
|
SKILL_REPO=nitishKumar/skill
|
|
LIBRARY_REPO=nitishKumar/library
|