fast gitea personal repo search https://rs.alv.cx
Go to file
2023-08-30 11:01:11 +01:00
.gitignore initial commit 2023-02-02 21:16:54 +00:00
fuse.js initial commit 2023-02-02 21:16:54 +00:00
gohookr.sh fix typo in gohookr script 2023-02-02 21:37:54 +00:00
index.template.html minor tweak 2023-02-02 21:36:29 +00:00
Makefile initial commit 2023-02-02 21:16:54 +00:00
readme.txt update access token details for latest version of gitea 2023-08-30 11:01:11 +01:00
script.template.js initial commit 2023-02-02 21:16:54 +00:00

reposearch
----------

create a .env file:

	GITEA_SITE=https://example.com
	GITEA_SITE_NAME=Human Friendly Name


run
	make

you will need to great an access token in gitea account settings (/user/settings/applications) with `repository` and `user` read access

you may also need to set CORS origin header for gitea. nginx example:

	server {
		location / {
			add_header Access-Control-Allow-Origin "https://<REPOSEARCH-DOMAIN>";

			...
		}

		...
	}