update readme

This commit is contained in:
2023-08-28 22:34:12 +01:00
parent 3062ad9cb4
commit b88300db29

View File

@@ -9,3 +9,19 @@ create a .env file:
run run
make make
you will need to great an access token in gitea account settings (/user/settings/applications) with `repo` scope ticked
you may also need to set CORS origin header for gitea. nginx example:
server {
location / {
add_header Access-Control-Allow-Origin "https://<REPOSEARCH-DOMAIN>";
...
}
...
}