Reference > Configuration files > Client
The configuration files are located in the folder conf/ residing in the SimpleCVS-folder.
General settings
identkey |
This should be a string of characters without any spaces. 8-100 character long, use only standard ASCII chars. This key is used to identify a client to see it is authorized to connect to the server. Must match the key specified in the clients config file. |
remote. friendly |
This switch decides wherethere to use the identkey authentification or not. 1 = true, 0 = false |
remote.host |
The host wich runs the SimpleCVS server. |
remote.port |
TCP port on wich the remote server run on. Uses TCP-sockets. |
Example setup:
#### GENERAL SETTINGS ##################
identkey: AVRYHZFFUEFG
remote.friendly: 1
remote.host: mydomain.com
remote.port: 4444
Projects & users
project. <projectname> |
Define a project, where <projectname> is the directory name and project name. The value of this variable should be an absolute path to the local project directory, NOT followed by a "/". It can also be a relative path, wich will be initialized from the SimpleCVS directory. |
user. <username>. pass |
<username> = the users name. The value of this variable should be the users password. |
user. <username>. project |
<username> = the users name. The value of this variable should be a name of an existing project. This enables the user to access that project. |
main.project |
What project to connect and sync to. |
main.user |
What user to connect as |
Example setup:
#### PROJECTS & USERS ###################
project.myproject: /joe/projects/myproject
user.joe.pass: abc123
user.joe.project: myproject
main.project: myproject
main.user: joe
Complete example - conf/client.txt
#### GENERAL SETTINGS ##################
identkey: AVRYHZFFUEFG
remote.friendly: 1
remote.host: mydomain.com
remote.port: 4444
#### PROJECTS & USERS ###################
project.myproject: /joe/projects/myproject
user.joe.pass: abc123
user.joe.project: myproject
main.project: myproject
main.user: joe
|