Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,25 @@ To quickly start hacking on Tahrir, we provide a local setup.
```

3. Tahrir frontend should now be available on [http://localhost:5173/](http://localhost:5173/). The logs are in `devel/run`. You can restart the frontend and/or the backend using `supervisorctl`.

### Commit Sign-off (DCO)

All commits must be signed to comply with the Developer Certificate of Origin (DCO). Pull requests without this sign-off might be rejected.

When committing changes in your local branch, add the -s flag to the git commit command:

```shell
git commit -s -m "YOUR_COMMIT_MESSAGE"
```

This creates a signed commit with an additional line:

```shell
Signed-off-by: Your Name <your_name@email.com>
```

For verifying your commit signature, you can check the log using below command:

```shell
git log -1
```