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
6 changes: 6 additions & 0 deletions .github/workflows/release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Generate Python README
run: python bindings/python/generate_readme.py

- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

Expand Down Expand Up @@ -78,6 +81,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Generate Python README
run: python3 bindings/python/generate_readme.py

- name: Install protoc (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
Expand Down
21 changes: 20 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Cargo.lock
.vscode/

# Python
bindings/python/GENERATED_README.md
__pycache__/
*.py[cod]
*$py.class
Expand All @@ -29,4 +30,22 @@ dist/
build/

# CPP
*CMakeFiles/
*CMakeFiles/

# Website (Docusaurus)
website/node_modules
website/build
website/.docusaurus
website/.cache-loader
website/.env.local
website/.env.development.local
website/.env.test.local
website/.env.production.local
website/npm-debug.log*
website/yarn-debug.log*
website/yarn-error.log*
website/package-lock.json
website/versioned_docs
website/versioned_sidebars
website/versions.json
website/pnpm-lock.yaml
3 changes: 2 additions & 1 deletion .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ header:
copyright-owner: Apache Software Foundation

paths-ignore:
- '.github/PULL_REQUEST_TEMPLATE.md'
- '.gitignore'
- 'LICENSE'
- 'NOTICE'
- 'DISCLAIMER'
- 'bindings/python/fluss/py.typed'
- 'website/**'
- '**/*.md'
comment: on-failure
18 changes: 0 additions & 18 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Development Guide

Welcome to the development guide of `fluss-rust`! This project builds `fluss-rust` client and language specific bindings.
Expand Down
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Apache Fluss™ Rust (Incubating)

![Experimental](https://img.shields.io/badge/status-experimental-orange)
Expand Down
18 changes: 0 additions & 18 deletions bindings/cpp/README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Apache Fluss™ C++ Bindings (Incubating)

C++ bindings for Fluss, built on top of the [fluss-rust](../../crates/fluss) client. The API is exposed via a C++ header ([include/fluss.hpp](include/fluss.hpp)) and implemented with Rust FFI.
Expand Down
19 changes: 0 additions & 19 deletions bindings/python/DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,3 @@
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->

# Development

## Requirements
Expand Down
Loading