An open source browser extension to add buttons for conventional comments (https://conventionalcomments.org/) to gitea review comment boxes.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/140
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: Sebastian Sauer <sauer.sebastian@gmail.com>
Co-committed-by: Sebastian Sauer <sauer.sebastian@gmail.com>
DevHub is a European company that offers free and paid Gitea hosting services to professionals and companies.
Based in Europe and with strong focus on Security, Privacy and Performance.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/135
Reviewed-by: delvh <dev.lh@web.de>
Reviewed-by: silverwind <silverwind@noreply.gitea.com>
Co-authored-by: Leandro David Cacciagioni <leandro.21.2008@gmail.com>
Co-committed-by: Leandro David Cacciagioni <leandro.21.2008@gmail.com>
Just fixes a tiny grammatical error in the README.
Co-authored-by: Eric Wagoner <ewagoner@gmail.com>
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/126
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Co-authored-by: ewagoner <ewagoner@noreply.gitea.com>
Co-committed-by: ewagoner <ewagoner@noreply.gitea.com>
A Gitea shortcut panel built based on UserScript.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/122
Co-authored-by: kerwin612 <kerwin612@noreply.gitea.com>
Co-committed-by: kerwin612 <kerwin612@noreply.gitea.com>
Adds an entry for an open source backup tool called soba with Gitea support.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/121
Co-authored-by: Jon Hadfield <jon@lessknown.co.uk>
Co-committed-by: Jon Hadfield <jon@lessknown.co.uk>
Add the Blender Projects website, which is managed by Gitea, to the Organizations list.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/118
Co-authored-by: JRed <jred@noreply.gitea.com>
Co-committed-by: JRed <jred@noreply.gitea.com>
For your consideration, this PR adds an Ansible role that I've cobbled together to run two Gitea instances on the same VPS (but the logic in the role should allow an arbitrary number of instances).
It is something of a hobby project of mine, but I'd be pleased to receive any comments or suggestions on how to improve the role.
Co-authored-by: taha@asks2 <taha@chepec.se>
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/117
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Reviewed-by: delvh <dev.lh@web.de>
Co-authored-by: solarchemist <gitea@solarchemist.se>
Co-committed-by: solarchemist <gitea@solarchemist.se>
This PR adds the nice bthree-dark theme by Blender.
I also sorted the themes in alphabetical order according to the contribution guidelines, which for some reason wasn't done before.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/107
Reviewed-by: pat-s <pat-s@noreply.gitea.io>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: denyskon <denyskon@noreply.gitea.io>
Co-committed-by: denyskon <denyskon@noreply.gitea.io>
Catppuccin recently added a dedicated theme for Gitea. (I am the author)
This replaces the previous link to catppuccin/codeberg with this
dedicated theme.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/105
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: winston <hey@winston.sh>
Co-committed-by: winston <hey@winston.sh>
hi there,
thank you for adding my theme last time (#95)
i had issues with Dark Reader, so i decided to create a dark version and auto version (switches theme based on system prefs)
consequently, i moved my original theme from the light theme section to the section immediately above it
both light and dark versions still use Gitea's default themes (gitea and arc-green) and with some colors and images from Gitea-Red-Silver
Signed-off-by: saegl5 <saegl5@noreply.gitea.io>
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/102
Reviewed-by: techknowlogick <techknowlogick@gitea.io>
Co-authored-by: saegl5 <saegl5@noreply.gitea.io>
Co-committed-by: saegl5 <saegl5@noreply.gitea.io>
Hi,
this PR adds the [xsrv.gitea](https://github.com/nodiscc/xsrv/tree/master/roles/gitea) ansible role, which can be used to deploy Gitea on any Debian-based Linux machine.
The role can be used from the [xsrv](https://xsrv.readthedocs.io/en/latest/) command-line tool/ansible wrapper, or with ansible [command-line](https://docs.ansible.com/ansible/latest/user_guide/command_line_tools.html) tools. Optionally it integrates with [netdata](https://github.com/nodiscc/xsrv/tree/master/roles/monitoring_netdata) for instance health monitoring, [apache](https://github.com/nodiscc/xsrv/tree/master/roles/apache) for reverse proxy and SSL/TLS certificate management, [rsnapshot](https://github.com/nodiscc/xsrv/tree/master/roles/backup) for automatic backups, and [postgresql](https://github.com/nodiscc/xsrv/tree/master/roles/postgresql) as a RDBMS.
Detailed installation/configuration documentation can be found at https://xsrv.readthedocs.io/en/latest/installation.html, but here is the short version using ansible command-line tools and self-signed certificates:
```bash
# create a project directory
$ mkdir -p ~/playbooks/myproject && cd ~/playbooks/myproject
# install ansible in a python virtualenv
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip3 install ansible
```
Create required files and directories (replace my.CHANGEME.org with the address of the server where gitea will be deployed, and other CHANGEME values with values of your choice)
```yaml
# requirements.yml
collections:
- name: https://gitlab.com/nodiscc/xsrv.git
type: git
version: release # or master to get the latest, development version
```
```yaml
# inventory.yml
all:
hosts:
my.CHANGEME.org:
```
```yaml
# playbook.yml
- hosts: my.CHANGEME.org
roles:
- nodiscc.xsrv.common # (optional) base server setup/hardening/firewall/bruteforce prevention
- nodiscc.xsrv.monitoring # (optional) server monitoring, log aggregation
- nodiscc.xsrv.backup # (optional) automatic backups
- nodiscc.xsrv.apache
- nodiscc.xsrv.postgresql
- nodiscc.xsrv.gitea
```
```yaml
# $ mkdir host_vars/my.CHANGEME.org
# host_vars/my.CHANGEME.org/my.CHANGEME.org.yml
#ansible_ssh_port: 2234 # SSH port, if different from 22
#ansible_host: 1.2.3.4 # SSH server address, if my.CHANGEME.org cannot be resolved from DNS
gitea_fqdn: "git.CHANGEME.org" # domain name of the gitea instance
```
```yaml
# $ ansible-vault edit host_vars/my.CHANGEME.org/my.CHANGEME.org.vault.yml
ansible_become_pass: "CHANGEME" # sudo password
gitea_admin_username: "CHANGEME"
gitea_admin_password: "CHANGEME"
gitea_admin_email: "CHANGEME@CHANGEME.org"
gitea_secret_key: "CHANGEME64"
gitea_internal_token: "CHANGEME160"
gitea_oauth2_jwt_secret: "CHANGEME43"
gitea_lfs_jwt_secret: "CHANGEME43"
```
```bash
# make the role/collection available to the ansible project
$ ansible-galaxy collection install --force -r requirements.yml
# deploy the role
$ ansible-playbook -i inventory.yml playbook.yml
```
See [defaults/main.yml](https://github.com/nodiscc/xsrv/blob/master/roles/gitea/defaults/main.yml) for all available configuration variables.
I use the role to manage multiple environments/instances for a few years without problems and will keep maintaining it in the foreseeable future.
Let me know if you need additional information.
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/97
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: pat-s <pat-s@noreply.gitea.io>
Co-authored-by: nodiscc <nodiscc@noreply.gitea.io>
Co-committed-by: nodiscc <nodiscc@noreply.gitea.io>
hi there,
hoping to contribute my theme and that everyone enjoys it :)
...although it is forked from Red Silver, it is quite different.
it uses Gitea's default theme but with some colors from Gitea-Red-Silver
Signed-off-by: saegl5 <saegl5@noreply.gitea.io>
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/95
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: pat-s <pat-s@noreply.gitea.io>
Co-authored-by: saegl5 <saegl5@noreply.gitea.io>
Co-committed-by: saegl5 <saegl5@noreply.gitea.io>
See preview on this site: https://git.sainnhe.dev/
Note that currently this theme only supports Gitea >= 1.18.0
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/91
Reviewed-by: Gusted <williamzijl7@hotmail.com>
Reviewed-by: John Olheiser <john+gitea@jolheiser.com>
Co-authored-by: Sainnhe Park <sainnhe@gmail.com>
Co-committed-by: Sainnhe Park <sainnhe@gmail.com>
Bot for mailing list mirroring of Gitea issues. Allow people to submit
issues on repositories using only e-mail without signing up.
- https://git.meli.delivery/meli/issue-bot
- https://github.com/meli/issue-bot
Co-authored-by: Manos Pitsidianakis <manos@pitsidianak.is>
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/87
Reviewed-by: 6543 <6543@obermui.de>
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: epilys <epilys@noreply.gitea.io>
Co-committed-by: epilys <epilys@noreply.gitea.io>