g2g/README.md

72 lines
2.3 KiB
Markdown
Raw Normal View History

2019-07-07 12:49:21 +02:00
# github-to-gogs
2019-07-07 12:52:38 +02:00
## Summary
2019-07-08 17:44:42 +02:00
github-to-gogs is a small program that migrate stars made on github projects to self owned gogs/gitea instance
2019-07-07 12:52:38 +02:00
2019-07-07 12:49:21 +02:00
## Howto
2019-07-07 12:52:38 +02:00
2019-07-07 12:49:21 +02:00
Build
2019-07-10 17:42:08 +02:00
```bash
2019-07-07 12:49:21 +02:00
go build
```
2019-07-07 12:52:38 +02:00
Configure in github-to-gogs.ini
2019-07-10 17:42:08 +02:00
```ini
2019-07-07 12:52:38 +02:00
[global]
request_timeout=1200s
user_agent="Golang"
2019-07-10 15:08:44 +02:00
threads=4
2019-07-07 12:52:38 +02:00
[github]
stars_pages="https://api.github.com/users/%s/starred?page=%d"
2019-07-10 15:08:44 +02:00
max_per_page=500
page_num=3
2019-07-07 12:52:38 +02:00
auth_username="user"
auth_password="pass"
content_type="application/x-www-form-urlencoded"
[gogs]
username="user"
dest_username="user_or_org"
repo_url_tmpl="https://gogs.example.com/api/v1/repos/%s/%s"
orgs_url_tmpl="https://git.paulbsd.com/api/v1/orgs/%s"
migrate_url="https://gogs.example.com/api/v1/repos/migrate"
auth_token="token xxxx"
content_type="application/json"
mirror=true
2019-07-07 12:49:21 +02:00
```
2019-07-07 12:52:38 +02:00
Run
```text
2019-07-07 12:49:21 +02:00
./github-to-gogs -configfile github-to-gogs.ini
```
2019-07-07 12:52:38 +02:00
2019-07-07 12:49:21 +02:00
## License
2019-07-07 12:52:38 +02:00
```text
Copyright (c) 2019, PaulBSD
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the fuelprices project.
```