Started work on HTTPS protocol

This commit is contained in:
Arthur Beck 2025-03-18 19:09:31 -05:00
parent c6ca503ed2
commit 2b03779aa7
No known key found for this signature in database
GPG key ID: ACE3D14F5CEF14BF
2 changed files with 22 additions and 1 deletions

View file

@ -13,4 +13,14 @@ object: A file storing differences from the previous mod.
.venus/mods: Mods files(specified in [MODS.md](./MODS.md)) with the extension of `.venus-mod`. They are named with the SHA512 hash of them truncated to 16 characters and concatenated to the unix timestamp in hex of their creation date.
.venus/mods/NEW_MOD.venus-mod: A file similar to git's `COMMIT_MSG` file. Staging file while the user is creating a new mod.
.venus/active/BRANCH: A file containing only the active branch name.
.venus/active/MOD: A file containing only the active module of the module file name without the extension.
.venus/active/MOD: A file containing only the active mod file name without the extension.
.venus/MOD_ORDER: A file containing a list of all mods with their respective branches in chronological order with oldest first(in the format `(branch name): (mod name)`). This excludes the file extension.
Files used by clients attempting to access remote HTTPS Venus repositories:
.venus/mods
.venus/objects
.venus/branches
.venus/default/BRANCH: A file containing only the default branch name.
.venus/default/MOD: A file containing only the default mod file name without the extension.
.venus/VERSION: A file containing the version of the files. This should be in the format `(name and version of protocol used)_(name and version of program that created the files)`, i.e. `venus-0.1_venus-0.1.0`.