summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-09-22 16:58:48 +0800
committer魏曹先生 <1992414357@qq.com>2025-09-22 16:58:48 +0800
commit0c186a8d2642e9ff3880c2b01bf651f57284436b (patch)
tree83218996d5fb9521cfc70d5c5b14a2f8bd28d25a
parent9a99827af4695eee77a3ece7e4138c46a493fc73 (diff)
Update vault.rs 1. Fix indentation issues in automatically generated
documents.
-rw-r--r--crates/env/src/workspace/vault.rs28
1 files changed, 14 insertions, 14 deletions
diff --git a/crates/env/src/workspace/vault.rs b/crates/env/src/workspace/vault.rs
index b00ba80..b725ec4 100644
--- a/crates/env/src/workspace/vault.rs
+++ b/crates/env/src/workspace/vault.rs
@@ -71,26 +71,26 @@ impl Vault {
// Final, generate README.md
let readme_content = format!(
"\
- # JustEnoughVCS Server Setup
+# JustEnoughVCS Server Setup
- This directory contains the server configuration and data for `JustEnoughVCS`.
+This directory contains the server configuration and data for `JustEnoughVCS`.
- ## User Authentication
- To allow users to connect to this server, place their public keys in the `{}` directory.
- Each public key file should correspond to a registered user.
+## User Authentication
+To allow users to connect to this server, place their public keys in the `{}` directory.
+Each public key file should correspond to a registered user.
- ## File Storage
- All version-controlled files (Virtual File) are stored in the `{}` directory.
+## File Storage
+All version-controlled files (Virtual File) are stored in the `{}` directory.
- ## License
- This software is distributed under the MIT License.
+## License
+This software is distributed under the MIT License.
- ## Support
- Repository: `https://github.com/JustEnoughVCS/VersionControl`
- Please report any issues or questions on the GitHub issue tracker.
+## Support
+Repository: `https://github.com/JustEnoughVCS/VersionControl`
+Please report any issues or questions on the GitHub issue tracker.
- ## Thanks :)
- Thank you for using `JustEnoughVCS!`
+## Thanks :)
+Thank you for using `JustEnoughVCS!`
",
SERVER_PATH_MEMBER_PUB, SERVER_PATH_VIRTUAL_FILE_ROOT
)