Skip to content

Commit e3eb7fc

Browse files
committed
fix(server): delete config
2 parents 71978ac + 5f91d8b commit e3eb7fc

130 files changed

Lines changed: 2297 additions & 1898 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.serena/project.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,23 @@ default_modes:
103103
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
104104
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
105105
fixed_tools: []
106+
107+
# override of the corresponding setting in serena_config.yml, see the documentation there.
108+
# If null or missing, the value from the global config is used.
109+
symbol_info_budget:
110+
111+
# The language backend to use for this project.
112+
# If not set, the global setting from serena_config.yml is used.
113+
# Valid values: LSP, JetBrains
114+
# Note: the backend is fixed at startup. If a project with a different backend
115+
# is activated post-init, an error will be returned.
116+
language_backend:
117+
118+
# list of regex patterns which, when matched, mark a memory entry as read‑only.
119+
# Extends the list from the global configuration, merging the two lists.
120+
read_only_memory_patterns: [ ]
121+
122+
# line ending convention to use when writing source files.
123+
# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default)
124+
# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings.
125+
line_ending:

CONTRIBUTING.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Before submitting the code, we need to do some preparation:
1919

2020
1. Sign up or login to GitHub: [https://github.com](https://github.com)
2121

22-
2. Fork HugeGraph repo from GitHub: [https://github.com/apache/incubator-hugegraph/fork](https://github.com/apache/incubator-hugegraph/fork)
22+
2. Fork HugeGraph repo from GitHub: [https://github.com/apache/hugegraph/fork](https://github.com/apache/hugegraph/fork)
2323

24-
3. Clone code from fork repo to local: [https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph](https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph)
24+
3. Clone code from fork repo to local: [https://github.com/${GITHUB_USER_NAME}/hugegraph](https://github.com/${GITHUB_USER_NAME}/hugegraph)
2525

2626
```shell
2727
# clone code from remote to local repo
28-
git clone https://github.com/${GITHUB_USER_NAME}/incubator-hugegraph.git hugegraph
28+
git clone https://github.com/${GITHUB_USER_NAME}/hugegraph.git hugegraph
2929
```
3030

3131
4. Configure local HugeGraph repo
@@ -34,7 +34,7 @@ Before submitting the code, we need to do some preparation:
3434
cd hugegraph
3535

3636
# add upstream to synchronize the latest code
37-
git remote add hugegraph https://github.com/apache/incubator-hugegraph
37+
git remote add hugegraph https://github.com/apache/hugegraph
3838

3939
# set name and email to push code to github
4040
git config user.name "{full-name}" # like "Jermy Li"
@@ -43,7 +43,7 @@ Before submitting the code, we need to do some preparation:
4343

4444
## 2. Create an Issue on GitHub
4545

46-
If you encounter bugs or have any questions, please go to [GitHub Issues](https://github.com/apache/incubator-hugegraph/issues) to report them and feel free to [create an issue](https://github.com/apache/incubator-hugegraph/issues/new).
46+
If you encounter bugs or have any questions, please go to [GitHub Issues](https://github.com/apache/hugegraph/issues) to report them and feel free to [create an issue](https://github.com/apache/hugegraph/issues/new).
4747

4848
## 3. Make changes of code locally
4949

@@ -75,10 +75,11 @@ Note: Code style is defined by the `.editorconfig` file at the repository root.
7575

7676
##### 3.2.1 Check licenses
7777
If we want to add new third-party dependencies to the `HugeGraph` project, we need to do the following things:
78-
1. Find the third-party dependent repository, put the dependent `license` file into [./hugegraph-dist/release-docs/licenses/](https://github.com/apache/incubator-hugegraph/tree/master/hugegraph-dist/release-docs/licenses) path.
79-
2. Declare the dependency in [./install-dist/release-docs/LICENSE](https://github.com/apache/incubator-hugegraph/blob/master/install-dist/release-docs/LICENSE) `LICENSE` information.
80-
3. Find the NOTICE file in the repository and append it to [./install-dist/release-docs/NOTICE](https://github.com/apache/incubator-hugegraph/blob/master/install-dist/release-docs/NOTICE) file (skip this step if there is no NOTICE file).
81-
4. Execute locally [./install-dist/scripts/dependency/regenerate_known_dependencies.sh](https://github.com/apache/incubator-hugegraph/blob/master/install-dist/scripts/dependency/regenerate_known_dependencies.sh) to update the dependency list [known-dependencies.txt](https://github.com/apache/incubator-hugegraph/blob/master/install-dist/scripts/dependency/known-dependencies.txt) (or manually update).
78+
79+
1. Find the third-party dependent repository, put the dependent `license` file into [./install-dist/release-docs/licenses/](https://github.com/apache/hugegraph/tree/master/install-dist/release-docs/licenses) path.
80+
2. Declare the dependency in [./install-dist/release-docs/LICENSE](https://github.com/apache/hugegraph/blob/master/install-dist/release-docs/LICENSE) `LICENSE` information.
81+
3. Find the NOTICE file in the repository and append it to [./install-dist/release-docs/NOTICE](https://github.com/apache/hugegraph/blob/master/install-dist/release-docs/NOTICE) file (skip this step if there is no NOTICE file).
82+
4. Execute locally [./install-dist/scripts/dependency/regenerate_known_dependencies.sh](https://github.com/apache/hugegraph/blob/master/install-dist/scripts/dependency/regenerate_known_dependencies.sh) to update the dependency list [known-dependencies.txt](https://github.com/apache/hugegraph/blob/master/install-dist/scripts/dependency/known-dependencies.txt) (or manually update).
8283

8384
**Example**: A new third-party dependency is introduced into the project -> `ant-1.9.1.jar`
8485
- The project source code is located at: https://github.com/apache/ant/tree/rel/1.9.1

DISCLAIMER

Lines changed: 0 additions & 7 deletions
This file was deleted.

NOTICE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Apache HugeGraph(incubating)
2-
Copyright 2022-2025 The Apache Software Foundation
1+
Apache HugeGraph
2+
Copyright 2022-2026 The Apache Software Foundation
33

44
This product includes software developed at
55
The Apache Software Foundation (http://www.apache.org/).

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<div align="center">
88

99
[![License](https://img.shields.io/badge/license-Apache%202-0E78BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
10-
[![HugeGraph-CI](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/ci.yml)
11-
[![License checker](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml/badge.svg)](https://github.com/apache/incubator-hugegraph/actions/workflows/licence-checker.yml)
10+
[![HugeGraph-CI](https://github.com/apache/hugegraph/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/hugegraph/actions/workflows/ci.yml)
11+
[![License checker](https://github.com/apache/hugegraph/actions/workflows/licence-checker.yml/badge.svg)](https://github.com/apache/hugegraph/actions/workflows/licence-checker.yml)
1212
[![GitHub Releases Downloads](https://img.shields.io/github/downloads/apache/hugegraph/total.svg)](https://github.com/apache/hugegraph/releases)
1313
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/apache/hugegraph)
1414

@@ -48,7 +48,7 @@ Complete **HugeGraph** ecosystem components:
4848

4949
2. **[hugegraph-computer](https://github.com/apache/hugegraph-computer)** - Integrated **graph computing** system
5050

51-
3. **[hugegraph-ai](https://github.com/apache/incubator-hugegraph-ai)** - **Graph AI/LLM/Knowledge Graph** integration
51+
3. **[hugegraph-ai](https://github.com/apache/hugegraph-ai)** - **Graph AI/LLM/Knowledge Graph** integration
5252

5353
4. **[hugegraph-website](https://github.com/apache/hugegraph-doc)** - **Documentation & website** repository
5454

@@ -223,9 +223,17 @@ Download pre-built packages from the [Download Page](https://hugegraph.apache.or
223223

224224
```bash
225225
# Download and extract
226-
wget https://downloads.apache.org/incubator/hugegraph/{version}/apache-hugegraph-incubating-{version}.tar.gz
227-
tar -xzf apache-hugegraph-incubating-{version}.tar.gz
228-
cd apache-hugegraph-incubating-{version}
226+
# For historical 1.7.0 and earlier releases, use the archive URL and
227+
# set PACKAGE=apache-hugegraph-incubating-{version} instead.
228+
BASE_URL="https://downloads.apache.org/hugegraph/{version}"
229+
PACKAGE="apache-hugegraph-{version}"
230+
# Historical alternative:
231+
# BASE_URL="https://archive.apache.org/dist/incubator/hugegraph/{version}"
232+
# PACKAGE="apache-hugegraph-incubating-{version}"
233+
234+
wget ${BASE_URL}/${PACKAGE}.tar.gz
235+
tar -xzf ${PACKAGE}.tar.gz
236+
cd ${PACKAGE}
229237

230238
# Initialize backend storage
231239
bin/init-store.sh
@@ -363,7 +371,7 @@ Welcome to contribute to HugeGraph!
363371

364372
Thank you to all the contributors who have helped make HugeGraph better!
365373

366-
[![contributors graph](https://contrib.rocks/image?repo=apache/hugegraph)](https://github.com/apache/incubator-hugegraph/graphs/contributors)
374+
[![contributors graph](https://contrib.rocks/image?repo=apache/hugegraph)](https://github.com/apache/hugegraph/graphs/contributors)
367375

368376
## License
369377

docker/configs/application-pd0.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

docker/configs/application-pd1.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

docker/configs/application-pd2.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.

docker/configs/application-store0.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)