diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-19 01:55:29 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-19 01:57:24 +0800 |
commit | 704f514d253bb3ee1a206b801d22718e9b90261b (patch) | |
tree | 32321f6f8e4ffed191aaed2720de0a294be7471a /tools | |
parent | aea207dd3ed8f28aef0627e67a325e50138159ff (diff) | |
download | crupest-704f514d253bb3ee1a206b801d22718e9b90261b.tar.gz crupest-704f514d253bb3ee1a206b801d22718e9b90261b.tar.bz2 crupest-704f514d253bb3ee1a206b801d22718e9b90261b.zip |
feat(git-server): add git server.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/cru-py/cru/service/_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/cru-py/cru/service/_config.py b/tools/cru-py/cru/service/_config.py index b51e21c..e4ab966 100644 --- a/tools/cru-py/cru/service/_config.py +++ b/tools/cru-py/cru/service/_config.py @@ -207,6 +207,8 @@ class ConfigManager(AppCommandFeatureProvider): _add_random_string("2FAUTH_APP_KEY", "2FAuth App Key") _add_text("2FAUTH_MAIL_USERNAME", "2FAuth SMTP user") _add_text("2FAUTH_MAIL_PASSWORD", "2FAuth SMTP password") + _add_text("GIT_SERVER_USERNAME", "Git server username") + _add_text("GIT_SERVER_PASSWORD", "Git server password") def setup(self) -> None: self._config_file_path = self.app.data_dir.add_subpath( |