Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 13 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,40 @@
We welcome all contributions to this project! Here are some simple ways you can help:

## Join Our Community

Join our [Discord server](https://discord.com/invite/GSknuxubZK) to connect with other contributors and get help:
- Chat with the community
- Ask questions
- Share ideas
- Get support

## Report Issues or Suggest Features

Found a bug or have an idea? Let us know!
- Open an issue to report problems
- Open an issue to suggest new features
- Be clear about what you found or what you want

## Make Changes

Want to fix something or add a feature?
- Open a pull request (PR) with your changes
- Look at open issues and try to solve them
- Make sure your code works before submitting

## Getting Started
*Note: By submitting a pull request, you agree to the Contributor License Agreement (see below).*

## Getting Started
1. Fork the project
2. Make your changes
3. Test your changes
4. Submit a pull request

Thank you for contributing! 🎉
## Contributor License Agreement

By submitting code, documentation, or other contributions to this repository, you agree that your contributions are licensed under both:

1. The open source AGPL license included in this repository, and
2. The commercial license under which this project is also distributed.

This means the maintainers may use, modify, and distribute your contributions under either license.
You retain copyright to your contributions, but you grant us a perpetual, worldwide license to include them in both the open source and commercial versions of this project.

If you do not agree to these terms, please do not submit contributions.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

651 changes: 651 additions & 0 deletions LICENSE-AGPL3.md

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# License

This project is licensed under a **dual license**:

- **Open Source License**: GNU AGPL v3 (see [LICENSE-AGPL3](LICENSE-AGPL3.md)).
Unless you have a separate commercial license from the copyright holder, the AGPL v3 applies by default.
Network use (SaaS) triggers the obligation to provide the corresponding source to users interacting with the software over a network.

- **Commercial License**:
For closed-source or commercial use without AGPL obligations, you must obtain a commercial license from the copyright holder.
Contact: robinroy.work@gmail.com or sr33ch4@yahoo.com

Copyright (c) 2025 Kimu Team
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
- 🔀Multi-track Support
- 👀Live Preview
- 📤Export Video
- 📜Licensed under MIT

## 🐋Deployment

Expand Down Expand Up @@ -53,4 +52,4 @@ We would love your contributions! ❤️ Check the [contribution guide](CONTRIBU

## 📜License

This project is licensed under the MIT License. The [Remotion license](https://github.com/remotion-dev/remotion/blob/main/LICENSE.md) also applies to the relevant parts of the project.
This project is licensed under a dual-license. Refer to [LICENSE](LICENSE.md) for details. The [Remotion license](https://github.com/remotion-dev/remotion/blob/main/LICENSE.md) also applies to the relevant parts of the project.
4 changes: 4 additions & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name = "backend"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
license = { file = "../LICENSE.md" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
]
requires-python = ">=3.12"
dependencies = [
"fastapi[standard]>=0.115.13",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "videoeditor",
"private": true,
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
Expand Down