allura
Revision | c9dc9e78754d6079a4cff8b6b516a473f9ecde45 (tree) |
---|---|
Zeit | 2012-05-04 02:22:15 |
Autor | Dave Brondsema <dbrondsema@geek...> |
Commiter | Yaroslav Luzin |
[#4140] provide functioning (local-only) default checkout commands for development
Signed-off-by: Dave Brondsema <dbrondsema@geek.net>
@@ -76,16 +76,30 @@ static.url_base = /nf/%(build_key)s/_static_/ | ||
76 | 76 | |
77 | 77 | ew.extra_headers = [ ('Access-Control-Allow-Origin', '*') ] |
78 | 78 | |
79 | -scm.host.ro.git = git://git.localhost$path | |
80 | -scm.host.rw.git = ssh://$username@localhost:8022/scm-repo$path | |
79 | +# SCM settings for local development | |
80 | +scm.host.ro.git = /tmp/git$path | |
81 | +scm.host.rw.git = /tmp/git$path | |
82 | +# remote access varies by configuration. If you are using a vagrant VM, this should work: | |
83 | +#scm.host.rw.git = ssh://vagrant@localhost:2222/tmp/git$path | |
84 | +scm.host.ro.hg = /tmp/hg$path | |
85 | +scm.host.rw.hg = /tmp/hg$path | |
86 | +scm.host.ro.svn = file:///tmp/svn$path/ | |
87 | +scm.host.rw.svn = file:///tmp/svn$path/ | |
88 | + | |
89 | +# SCM settings for chroot + ldap configuration. See Allura/docs/scm_host.rst | |
90 | +# scm.host.ro.git = git://git.localhost$path | |
91 | +# scm.host.rw.git = ssh://$username@localhost:8022/scm-repo$path | |
92 | +# scm.host.ro.hg = http://hg.localhost$path | |
93 | +# scm.host.rw.hg = ssh://$username@localhost:8022/scm-repo$path | |
94 | +# scm.host.ro.svn = http://svn.localhost$path/ | |
95 | +# scm.host.rw.svn = svn+ssh://localhost:8022/scm-repo$path/ | |
96 | + | |
97 | +# SCM settings for https (sorry no docs for setting these up) | |
98 | +# these settings are currently required by the template, no matter what | |
81 | 99 | scm.host.https.git = https://$username@localhost:8022/scm-repo$path |
82 | 100 | scm.host.https_anon.git = https://localhost:8022/scm-repo$path |
83 | -scm.host.ro.hg = http://hg.localhost$path | |
84 | -scm.host.rw.hg = ssh://$username@localhost:8022/scm-repo$path | |
85 | 101 | scm.host.https.hg = https://$username@localhost:8022/scm-repo$path |
86 | 102 | scm.host.https_anon.hg = https://localhost:8022/scm-repo$path |
87 | -scm.host.ro.svn = http://svn.localhost$path/ | |
88 | -scm.host.rw.svn = svn+ssh://localhost:8022/scm-repo$path/ | |
89 | 103 | scm.host.https.svn = https://localhost:8022/scm-repo$path/ |
90 | 104 | scm.host.https_anon.svn = https://localhost:8022/scm-repo$path/ |
91 | 105 |
@@ -57,7 +57,7 @@ scm.new_refresh = true | ||
57 | 57 | scm.host.ro.git = git://git.localhost$path |
58 | 58 | scm.host.rw.git = ssh://$username@localhost:8022/scm-repo$path |
59 | 59 | scm.host.https.git = https://$username@localhost:8022/scm-repo$path |
60 | -scm.host.https_anon.git = https://ocalhost:8022/scm-repo$path | |
60 | +scm.host.https_anon.git = https://localhost:8022/scm-repo$path | |
61 | 61 | scm.host.ro.hg = http://hg.localhost$path |
62 | 62 | scm.host.rw.hg = ssh://$username@localhost:8022/scm-repo$path |
63 | 63 | scm.host.https.hg = https://$username@localhost:8022/scm-repo$path |