mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 22:13:07 +00:00
* Add basic docs for cluster fleet * Add more cluster notes for viewing logs * Add note on submodules
11 lines
258 B
Markdown
11 lines
258 B
Markdown
# Submodules
|
|
|
|
We use Git submodules in the `vendor` directory to track internal Nim
|
|
dependencies. We want to update submodules all at once to avoid issues.
|
|
|
|
```
|
|
git submodule foreach --recursive git submodule update --init
|
|
git submodule update --remote
|
|
```
|
|
|