File config/config-default.sh
Last commit: Tue Dec 10 00:38:52 2024 +0100 Jan Dankert Adding the default config.
1 # do NOT change this file, 2 # instead copy this file to at least one of: 3 # - ~/.config/dit 4 # - /etc/dit 5 6 project_config_file=.dit.yml 7 debug=off 8 9 # 10 archive=off 11 archive_dir="/path/to/archive_dir" 12 archive_ssh=off 13 archive_ssh_user=myusername 14 archive_ssh_host=myhostname.example 15 archive_ssh_path="/path/to/dir" 16 17 sshpush=off 18 ssh_user=myusername 19 ssh_host=myhostname.example 20 ssh_path="/path/to/dir" 21 22 site=off 23 site_clone_url="http://clone.host.example" 24 site_dir="path/to/dir" 25 site_index_create=true 26 site_index_title="My projects" 27 site_sync_ssh_user=myusername 28 site_sync_ssh_host="ssh_host.example" 29 site_sync_ssh_path="path/to/dir" 30 31 # Build dockerimage (if Dockerfile exists) 32 docker=off 33 docker_owner="My Name" 34 dockerhub_owner="hubowner" 35 36 github=off 37 github_owner="username_at_github" 38 39 # copy project to a public website directory 40 public=off 41 public_dir="path/to/dir" 42 public_index_create=on 43 public_index_title="My projects" 44 public_sync_ssh_user=myusername 45 public_sync_ssh_host=sshhost.example 46 public_sync_ssh_path="path/to/dir" 47 public_markdown_to_html=on 48 49 # Notify is able to send a mail 50 # If 'notify' is off, all output will be written to standard out 51 notify=false 52 notify_sendmail=true 53 notify_smtp=true 54 notify_smtp_host="smtp server" 55 notify_smtp_from="myemail@example" 56 notify_stdout=true # copy to standard out 57 notify_add_receiver_mail="email@example" 58 59 # Danger: do not set the name, it will be auto-configured with the repo-name 60 repo_project_name= 61 62 repo_project_description= 63 64 # default module settings 65 repo_modules_docker=off 66 repo_modules_archive=on 67 repo_modules_site=on 68 repo_modules_github=on 69 repo_modules_sshpush=on 70 repo_modules_public=on
Downloadconfig/config-default.sh
History Tue, 10 Dec 2024 00:38:52 +0100 Jan Dankert Adding the default config.