markdown: Installation: update repo prep/clone

This commit is contained in:
2026-02-19 12:41:07 -08:00
parent 155279eacf
commit 1505ed7c3a

View File

@@ -55,14 +55,14 @@ docker-finance *should* work out-of-the-box on any modern Linux system. For exam
3. Prepare your base path and repository:
Before proceeding, change your directory to a *persistent base path* that you intend to keep; as this will be the default base path for all data going forward.
NOTE: you *can* change the default base path later during [Client Generation](#client-generation).
- Before proceeding, change your directory to a *persistent base path* that you intend to keep; as this will be the default base path for all data going forward
* The absolute path of your current working directory + `./docker-finance` will be the default base path to house all data
* If you'd like, you *can* change the base path later during [Client Generation](#client-generation)
```bash
# NOTE: ./docker-finance will be the default parent directory to house all data
# NOTE: you can change the domain to `gitea.com`, as this repository is also mirrored there
if hash git &>/dev/null; then
if ! git clone https://gitea.evergreencrypto.co/EvergreenCrypto/docker-finance docker-finance/repo; then
if ! git clone --depth=1 https://gitea.evergreencrypto.co/EvergreenCrypto/docker-finance docker-finance/repo -b v1.2.0; then
echo "FATAL: docker-finance repo not cloned" >&2
fi
else