Build and deploy user-facing frontend (Forgejo)
Codeberg Build Maintainers 748b5bbf95 Set GOAMD to optimize binary
2025-06-08 22:53:03 +00:00
etc/forgejo Use argon2 for password hashing 2025-06-08 18:05:40 +02:00
.gitignore chore: cleanup (#151) 2025-04-19 14:56:30 +02:00
codeberg-favicon.svg Apply favicon variant with dark/light adaption 2024-01-24 00:43:42 +01:00
codeberg-white.svg Trim codeberg-dark.svg and rename it to codeberg-white.svg 2020-06-16 11:27:47 +02:00
codeberg.svg replace two old logo svg files 2020-06-16 09:04:07 +02:00
createVM.sh simple_deploy_fixes (#99) 2022-09-25 00:35:48 +02:00
deployConfigFiles.sh Remove banner on new site 2025-05-18 22:34:03 +00:00
go.mod work with different targets in single branch (#105) 2023-01-06 19:55:52 +00:00
go.sum work with different targets in single branch (#105) 2023-01-06 19:55:52 +00:00
LICENSE LICENSE 2019-10-08 16:30:34 +02:00
Makefile Set GOAMD to optimize binary 2025-06-08 22:53:03 +00:00
mergeConfigs.go chore: cleanup (#151) 2025-04-19 14:56:30 +02:00
preseed.cfg preseed without LVM 2021-04-28 11:42:21 +02:00
README.md format :) 2020-06-02 19:11:05 +02:00

Build gitea for Codeberg.org or local testing in VM or on dedicated testing server

Assets and config files

Please see https://docs.gitea.io/en-us/customizing-gitea/ for details:

etc/systemd/system/gitea.service  ## Systemd service file
etc/gitea/public/                 ## Public web files, CSS, fonts etc
etc/gitea/public/img/             ## Static images
etc/gitea/templates/              ## Templates for gitea
etc/gitea/conf/app.ini            ## Gitea config
var/www/pages                     ## Codeberg Pages PHP source

Prerequisites

You need all the tools required to build gitea (check out the gitea build instructions for details), and inkscape and imagemagick installed for image format conversion as part of the build process.

Build KVM node for local testing

You can use the deploy Makefile described below to deploy locally (configuration and binary files are installed into /data/ and /etc/gitea), a dedicated server, or a locally running virtual machine.

If a local virtual machine is sufficient for testing (in most cases it is), you can use this script to create your VM. Take a look into the script and check out the KVM documentation for details.

##
## createVM.sh expects virt-install configured with networking bridge interface br0 to make ${HOSTNAME_FQDN} visible in local network
##
HOSTNAME_FQDN=<hostname>
./createVM.sh ${HOSTNAME_FQDN}

Build and deploy to VM or live server

The deployment will execute a number of scp+ssh calls to the target host. To avoid typing the ssh password again and again, consider using ssh-agent+ssh-add.

To build gitea and deploy to remote host, installing local templates, images, and assets:

## locally:                 HOSTNAME_FQDN=localhost
## on VM or testing server: HOSTNAME_FQDN=<hostname>	## the hostname of your VM
## live:                    HOSTNAME_FQDN=codeberg.org
make HOSTNAME_FQDN=<hostname> deployment