Add Windows Commands to TD Guide #189
@ -173,6 +173,7 @@ export default defineConfig({
|
||||
items: [
|
||||
{text: 'Project Tools Setup', link: '/td-guide/project-tools-setup'},
|
||||
{text: 'SVN Setup', link: '/td-guide/svn-setup'},
|
||||
{text: 'Syncthing Setup', link: '/td-guide/syncthing-setup-setup'},
|
||||
{text: 'Python Setup', link: '/td-guide/python'}
|
||||
]
|
||||
},
|
||||
|
28
docs/td-guide/syncthing-setup.md
Normal file
28
docs/td-guide/syncthing-setup.md
Normal file
@ -0,0 +1,28 @@
|
||||
# Syncthing Setup
|
||||
|
||||
## Install Syncthing
|
||||
The Blender Studio Pipeline relies on [syncthing](https://syncthing.net/) to sync large files like Renders and Playblasts used in production. This guide will show you how to install an Syncthing on a workstation, assuming you already have an Syncthing server setup. To learn more about how to setup an SVN server visit the [Syncthing Documentation](https://docs.syncthing.net/intro/getting-started.html)
|
||||
### Linux/Mac
|
||||
|
||||
**Debian/Ubuntu**
|
||||
Install the latest Syncthing Packages via the official [Syncthing Repository](https://apt.syncthing.net/)
|
||||
```bash
|
||||
# Add the release PGP keys:
|
||||
sudo mkdir -p /etc/apt/keyrings
|
||||
sudo curl -L -o /etc/apt/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
|
||||
|
||||
# Add the "stable" channel to your APT sources:
|
||||
echo "deb [signed-by=/etc/apt/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" | sudo tee /etc/apt/sources.list.d/syncthing.list
|
||||
|
||||
# Update and install syncthing:
|
||||
sudo apt-get update
|
||||
sudo apt-get install syncthing
|
||||
```
|
||||
|
||||
**Other Linux Distrubutions**
|
||||
Get the [latest release](https://github.com/syncthing/syncthing/releases/tag/v1.27.2) for your distribution.
|
||||
|
||||
### Windows
|
||||
Syncthing can be installed on windows with the official [Syncthing Installer](127.0.0.1:8384) by following [this video](https://www.youtube.com/watch?v=2QcO8ikxzxA&ab_channel=UsefulVid) but it is recommended for novice users to use the Community Contributed package [SyncTrayzor](https://github.com/canton7/SyncTrayzor)
|
||||
|
||||
1. Download and Install the latest version of [SyncTrazor](https://github.com/canton7/SyncTrayzor#installation)
|
Loading…
Reference in New Issue
Block a user