update readme

This commit is contained in:
Akbar Rahman 2023-08-28 22:34:12 +01:00
parent 3062ad9cb4
commit b88300db29
Signed by: alvierahman90
GPG Key ID: 20609519444A1269

View File

@ -9,3 +9,19 @@ create a .env file:
run
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>";
...
}
...
}