This role deploys, updates and configures Forgejo, https://forgejo.org/
Go to file
muppeth 2ac865ad85 1.20.6 0 (#38)
Co-authored-by: meaz <meaz@disroot.org>
Reviewed-on: #38
Reviewed-by: meaz <meaz@no-reply@disroot.org>
Co-authored-by: muppeth <muppeth@disroot.org>
Co-committed-by: muppeth <muppeth@disroot.org>
2023-11-28 20:14:24 +00:00
Playbooks change from gitea to forgejo (#31) 2023-05-16 12:32:34 +00:00
defaults 1.20.6 0 (#38) 2023-11-28 20:14:24 +00:00
handlers change from gitea to forgejo (#31) 2023-05-16 12:32:34 +00:00
tasks 1.19.4-0 (#33) 2023-09-06 18:33:34 +00:00
templates/etc add incoming emails (#36) 2023-10-03 14:24:20 +00:00
.gitignore Migration commit; fresh start 2021-04-08 11:29:16 +02:00
LICENSE Migration commit; fresh start 2021-04-08 11:29:16 +02:00
README.md change from gitea to forgejo (#31) 2023-05-16 12:32:34 +00:00
Vagrantfile change from gitea to forgejo (#31) 2023-05-16 12:32:34 +00:00

README.md

Forgejo - Ansible Role

This role covers deployment, configuration and software updates of Forgejo. This role is released under MIT Licence and we give no warranty for this piece of software. Currently supported OS - Debian.

You can deploy test instance using Vagrantfile attached to the role. vagrant up

ansible-playbook -b Playbooks/forgejo.yml

Then you can then access forgejo from your computer on http://192.168.33.14:3000

Gitea or Forgejo

This role allows for deployment of gitea and forgejo. By default the role deploys forgejo and this is the flavor that is supported and maintained. Installing Gitea using the role is possible however starting from version 1.18.2 is no longer maintained by Disroot team. To switch to gitea, update following variables in your Playbook/host_vars:

forgejo_flavour: 'gitea'
forgejo_version: '1.18.2'
forgejo_arch: 'linux-amd64'
forgejo_download_url: 'https://github.com/go-gitea/gitea/releases/download/v{{ forgejo_version }}/gitea-{{ forgejo_version }}-{{ forgejo_arch }}'

Playbook

The playbook includes postgresql role and deploys entire stack needed to run Forgejo. Additional roles are also available in the Ansible roles repos in git.

Customization

You can deploy custom themes with this role. To do so, uncomment forgejo_theme_dir and forgejo_custom_themes from defaults/main.yml. Add the theme repos' address and name there, enable them and then deploy with ansible-playbook -b Playbooks/forgejo.yml --tags theme.

You can also add you own images like favicon, icons, etc. See https://docs.gitea.io/en-us/customizing-gitea/ to see how to prepare your images. Then, copy them in the img folder of this role and uncomment forgejo_extra_files_path and forgejo_theme_dir from defaults/main.yml. You can then deploy with ansible-playbook -b Playbooks/forgejo.yml --tags config.

For more information about customizaton, check https://docs.gitea.io/en-us/customizing-gitea/.