File README changed (mode: 100644) (index 9f60a81..57dfb7c) |
102 |
102 |
create the admin account. |
create the admin account. |
103 |
103 |
|
|
104 |
104 |
. You may want to install qrencode to be able to be able to see the two factor |
. You may want to install qrencode to be able to be able to see the two factor |
105 |
|
authentication keys as QR pictures. |
|
|
105 |
|
authentication keys as QR images. |
106 |
106 |
|
|
107 |
107 |
== Thanks == |
== Thanks == |
108 |
108 |
. Special thanks to my family that supports me in this project. |
. Special thanks to my family that supports me in this project. |
File TODO changed (mode: 100644) (index a6656d1..d24ecbc) |
1 |
1 |
== Where I stopped last time == |
== Where I stopped last time == |
|
2 |
|
[ ] /user/catalinux/test1/source/tree/blob/"xx/"yy" pe rocketgit.com |
|
3 |
|
generates errors. something regargin ls-tree that outputs nothing. |
|
4 |
|
This is another problem. If is empty, we should not enter foreach! |
2 |
5 |
[ ] |
[ ] |
3 |
6 |
|
|
4 |
7 |
== BEFORE NEXT RELEASE == |
== BEFORE NEXT RELEASE == |
|
8 |
|
[ ] history: when a branch is pushed, link to the difference between the two. |
|
9 |
|
[ ] wh:http: add a tag (##...##) with the first commit text? |
|
10 |
|
[ ] Add some recipes for Slack (and others) for the body to be posted. |
|
11 |
|
[ ] Show more info about ssh keys: type/bits/etc. |
|
12 |
|
[ ] Think about attaching a webhook to a foreign repo. |
|
13 |
|
Think about getting Slack notifications for pushes in another repo, |
|
14 |
|
not owned by you. |
|
15 |
|
[ ] inject a variable lenght dummy field in login form. Maybe other sensitive |
|
16 |
|
areas where the length can be used to detect a password length. |
|
17 |
|
[ ] ssh keys should not be in the same namespace as user. keep them separate |
|
18 |
|
because are not so used. |
|
19 |
|
[ ] repo stats: number of bytes in all files (maybe grouped by extention?) |
|
20 |
|
[ ] http://www.zdnet.com/article/github-developers-express-anger-at-lack-of-support-bug-fix-issues/ |
|
21 |
|
- custom fields for issues (with enforcing) |
|
22 |
|
- voting not "like" |
|
23 |
|
[ ] Prepare rocketgit to run on: |
|
24 |
|
http://linuxgizmos.com/15-dollar-sbc-features-quad-core-64-bit-allwinner-a4-pi-expansion/ |
5 |
25 |
[ ] wh: 2 members in a team, both must push to S3 - it is possible |
[ ] wh: 2 members in a team, both must push to S3 - it is possible |
6 |
26 |
with only one hook? If the other user can push, why not let her/him |
with only one hook? If the other user can push, why not let her/him |
7 |
27 |
execute the hook? The problem is that I have no link between the repo. |
execute the hook? The problem is that I have no link between the repo. |
File root/themes/default/download-vm.html changed (mode: 100644) (index 50bd81d..be8336c) |
244 |
244 |
<div class="island_title">Common section for all virtualization solutions</div> |
<div class="island_title">Common section for all virtualization solutions</div> |
245 |
245 |
|
|
246 |
246 |
You must check the following list because you may want to:<br /> |
You must check the following list because you may want to:<br /> |
|
247 |
|
* extend the disk space; maybe adding some swap space<br /> |
247 |
248 |
* set the machine to auto boot at host start<br /> |
* set the machine to auto boot at host start<br /> |
248 |
249 |
* generate new SSL/TLS keys<br /> |
* generate new SSL/TLS keys<br /> |
249 |
250 |
* add the vm in the update plan (periodic 'yum update')<br /> |
* add the vm in the update plan (periodic 'yum update')<br /> |
File root/themes/default/hints/ssh/key.html changed (mode: 100644) (index 145cef9..f63012b) |
1 |
1 |
<br /> |
<br /> |
2 |
2 |
How to create a SSH key for RocketGit:<br /> |
How to create a SSH key for RocketGit:<br /> |
3 |
3 |
<div class="xcode"> |
<div class="xcode"> |
|
4 |
|
cd; mkdir -p .ssh; chmod go= .ssh<br /> |
4 |
5 |
ssh-keygen -t rsa -b 4096 -o -C "Key for RocketGit" -f ~/.ssh/rocketgit1<br /> |
ssh-keygen -t rsa -b 4096 -o -C "Key for RocketGit" -f ~/.ssh/rocketgit1<br /> |
5 |
6 |
or<br /> |
or<br /> |
6 |
7 |
ssh-keygen -t ed25519 -C "Key for RocketGit" -f ~/.ssh/rocketgit1<br /> |
ssh-keygen -t ed25519 -C "Key for RocketGit" -f ~/.ssh/rocketgit1<br /> |
|
... |
... |
Host @@rg_ssh_host@@<br /> |
20 |
21 |
</div> |
</div> |
21 |
22 |
<br /> |
<br /> |
22 |
23 |
|
|
|
24 |
|
Then, protect the config file:<br /> |
|
25 |
|
<div class="xcode"> |
|
26 |
|
chmod go= ~/.ssh/config<br /> |
|
27 |
|
</div> |
|
28 |
|
<br /> |
|
29 |
|
|
23 |
30 |
To see the fingerprint of your local key (for comparison):<br /> |
To see the fingerprint of your local key (for comparison):<br /> |
24 |
31 |
<div class="xcode"> |
<div class="xcode"> |
25 |
32 |
ssh-keygen -f ~/.ssh/rocketgit1 -l<br /> |
ssh-keygen -f ~/.ssh/rocketgit1 -l<br /> |