├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── sync-bde.iml └── vcs.xml ├── Dockerfile ├── LICENSE ├── README.md ├── actions.py ├── auto.sh ├── forever.sh ├── gitea.py ├── gitlab.py ├── helpers.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/sync-bde.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/.idea/sync-bde.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/README.md -------------------------------------------------------------------------------- /actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/actions.py -------------------------------------------------------------------------------- /auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/auto.sh -------------------------------------------------------------------------------- /forever.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/forever.sh -------------------------------------------------------------------------------- /gitea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/gitea.py -------------------------------------------------------------------------------- /gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/gitlab.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeanRibes/mirror-gitlab-gitea/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | simple-rest-client==0.5.3 2 | --------------------------------------------------------------------------------