-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
48 lines (35 loc) · 1.45 KB
/
config.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Configuration file for skynet
[SFTP]
# ================= Sever Configuration =================
# Hostname or IP address of the remote server.
remote_host = localhost
# SSH username for the remote server.
remote_username = username
# TCP port for the SSH server on the remote machine (default port is 22).
remote_port = 22
# SSH password for the remote server.
remote_password = bash-password
[SYNC]
# ================= Sync Configuration =================
# NOTE: Trailing slashes are optional.
# The local path specified here should be relative to the top lvl dir.
# Please see README.md for further details on configuration settings.
# Path of the top level dir location on the local machine
# Should be an absolute path, relative paths may lead to errors.
# Tilde notation is acceptable.
complete_sync = True
local_root = /home/username/Code
# Files matching these patterns will be not be uploaded to the server.
# Like temporary files --swap files.
ignore_patterns = *.swp
# Top level directory location on the remote server.
# Should be an absolute path -- without tilde notation.
# Should start with leading slashes.
# Should use UNIX-style forward slashes, since the remote server will be
# accessed via SFTP.
remote_root = /home/username
# NOTE: The following path should not contain leading slashes
# local_dir should be located relative to the local_root path
# remote_dir should be located relative to the remote_root path
local_dir = test
remote_dir = Stuff