mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-16 19:25:09 +00:00
41 lines
1,004 B
Markdown
41 lines
1,004 B
Markdown
# enable federation
|
|
|
|
copy the app.ini in this folder in custom/conf in the forgejo root directory.
|
|
Then change the paths in app.ini accordingly to you local environment.
|
|
|
|
# build
|
|
|
|
```
|
|
TAGS="sqlite" make build generate-swagger
|
|
```
|
|
|
|
# launch local
|
|
|
|
```
|
|
./gitea admin user create --name me --password me --email "buero@meissa.de"
|
|
./gitea admin user generate-access-token -u me -t token --scopes write:activitypub,write:repository,write:user
|
|
```
|
|
|
|
# sync base branch
|
|
|
|
```
|
|
# setup a second repo for excosy implementation
|
|
git clone https://git.exozy.me/a/gitea.git exosy
|
|
|
|
# add remotes
|
|
git remote add forgejo git@codeberg.org:forgejo/forgejo.git
|
|
|
|
# rebase on top of forgejo/forge-development
|
|
git checkout forgejo-development
|
|
git fetch forgejo
|
|
git rebase --onto forgejo/forgejo-development
|
|
git push --force
|
|
|
|
git checkout forgejo-federated-star
|
|
git rebase forgejo-development
|
|
git push --force
|
|
|
|
# continue local development after rebase & force-push has happened
|
|
git reset --hard origin/forgejo-federated-star
|
|
```
|