Skip to content
Open
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
8 changes: 7 additions & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@
name: Check Apache License

on:
push
push:
branches:
- master

pull_request:
branches:
- master

jobs:
ubuntu-build:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/loc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,21 @@ jobs:
ref: ${{ env.BRANCH_NAME }}

- name: NPM Init
run: npm init -y
run: rm -rf node_modules package-lock.json && npm init -y

- name: NPM Install
run: npm install badgen @actions/core glob-gitignore
run: npm install badgen @actions/core@2 glob-gitignore

- name: NPM Update
run: npm update && npm audit fix --force

- name: Launch the local action
id: badge
uses: ./third_party/loc_script/ # Uses an action in the root directory
with:
debug: true
directory: ./
patterns: '**/*.h|**/*.cpp'
patterns: '**/*.h | **/*.cpp | **/*.ts | **/*.py | **/*.js | **/*.ccs'
badge: ./output/badge.svg
ignore: 'node_modules/|README'

Expand Down
3 changes: 0 additions & 3 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ header:
- 'dev/.rat-excludes'
- 'documents/doxygen/.gitignore'
- 'third_party/loc_script/src/index.js'
- 'ecosystem/**/*.mdx'
- 'ecosystem/**/*.json'
- 'ecosystem/**/LICENSE*'
- 'ecosystem/monitoring/reslens/src/lib/**'
- 'ecosystem/third_party/**'


Expand Down
5 changes: 0 additions & 5 deletions DISCLAIMER
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ While incubation status is not necessarily a reflection of the completeness
or stability of the code, it does indicate that the project has yet to be
fully endorsed by the ASF.

Some of the incubating project’s releases may not be fully compliant with ASF policy.
For example, releases may have incomplete or un-reviewed licensing conditions.
What follows is a list of known issues the project is currently aware of
(note that this list, by definition, is likely to be incomplete):

If you are planning to incorporate this work into your product/project, please
be aware that you will need to conduct a thorough licensing review to determine
the overall implications of including this work. For the current status of this
Expand Down
31 changes: 30 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

ecosystem/pocketflow/ files from https://github.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge
/ecosystem/third_party/pocketflow files from https://github.com/The-Pocket/PocketFlow-Tutorial-Codebase-Knowledge

MIT License

Expand All @@ -257,3 +257,32 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

================================================================
Creative Commons Zero v1.0 Universal (CC0)
================================================================

/ecosystem/monitoring/reslens/src/lib/webapp/sass/sanitize.css/ files from https://github.com/csstools/sanitize.css

sanitize.css is licensed under the Creative Commons Zero v1.0 Universal (CC0)
Public Domain Dedication.

Creative Commons Zero v1.0 Universal

CC0 1.0 Universal (CC0 1.0)
Public Domain Dedication

The person who associated a work with this deed has dedicated the work to the
public domain by waiving all of his or her rights to the work worldwide under
copyright law, including all related and neighboring rights, to the extent
allowed by law.

You can copy, modify, distribute and perform the work, even for commercial
purposes, all without asking permission.

In no way are the patent or trademark rights of any person affected by CC0, nor
are the rights that other persons may have in the work or in how the work is
used, such as publicity or privacy rights.

For more information, see:
https://creativecommons.org/publicdomain/zero/1.0/
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache ResilientDB (Incubating)
Copyright 2023-2025 The Apache Software Foundation
Copyright 2023-2026 The Apache Software Foundation

This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

![](https://img.shields.io/github/v/release/resilientdb/resilientdb)
![](https://img.shields.io/badge/language-c++-orange.svg)
![](https://img.shields.io/badge/language-TypeScript-blue.svg)
![](https://img.shields.io/badge/language-Python-purple.svg)
![](https://img.shields.io/badge/language-JavaScript-yellow.svg)
![](https://img.shields.io/badge/platform-Ubuntu20.0+-lightgrey.svg)
![GitHub](https://img.shields.io/github/license/resilientdb/resilientdb)
![Generated Button](https://raw.githubusercontent.com/resilientdb/resilientdb/image-data/badge.svg)
Expand Down
Loading