Skip to content

Commit a91871d

Browse files
Merge branch 'feat/face-performance-optimization-3352' into feat/database_optimization_3528
2 parents 16d5e65 + 162834c commit a91871d

File tree

134 files changed

+2421
-1227
lines changed

Some content is hidden

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

134 files changed

+2421
-1227
lines changed

.config/dictionaries/project.dic

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ autoresizing
2929
autovalidate
3030
backendpython
3131
backgrounding
32+
backpressure
3233
bech
3334
bimap
3435
bindgen
@@ -66,6 +67,7 @@ CNFT
6667
COCOAPODS
6768
codegen
6869
codepoints
70+
COEP
6971
collabs
7072
commitlog
7173
concatcp
@@ -266,6 +268,7 @@ Pdart
266268
permissionless
267269
pg_isready
268270
pinenacl
271+
PITR
269272
plpgsql
270273
podfile
271274
podhelper
@@ -306,6 +309,7 @@ ristretto
306309
rlib
307310
rngs
308311
rolname
312+
rollouts
309313
RPATH
310314
ruleset
311315
rustc

.markdownlint.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
// MD007/ul-indent - Unordered list indentation
2828
"MD007": {
2929
// Spaces for indent
30-
"indent": 2,
30+
"indent": 4,
3131
// Whether to indent the first level of the list
3232
"start_indented": false,
3333
// Spaces for first level indent (when start_indented is set)
34-
"start_indent": 2
34+
"start_indent": 4
3535
},
3636
// MD009/no-trailing-spaces - Trailing spaces
3737
"MD009": {

.vscode/launch.recommended.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"deviceId": "chrome",
1515
"program": "lib/configs/main_web.dart",
1616
"args": [
17+
"--wasm",
1718
"--dart-define",
1819
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
1920
"--web-header",
@@ -34,6 +35,7 @@
3435
"deviceId": "chrome",
3536
"program": "lib/configs/main_web.dart",
3637
"args": [
38+
"--wasm",
3739
"--dart-define",
3840
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
3941
"--web-header",
@@ -52,6 +54,7 @@
5254
"deviceId": "chrome",
5355
"program": "lib/configs/main_web.dart",
5456
"args": [
57+
"--wasm",
5558
"--dart-define",
5659
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
5760
"--web-header",
@@ -70,6 +73,7 @@
7073
"deviceId": "chrome",
7174
"program": "lib/configs/main_web.dart",
7275
"args": [
76+
"--wasm",
7377
"--dart-define",
7478
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
7579
"--web-header",
@@ -88,6 +92,7 @@
8892
"deviceId": "chrome",
8993
"program": "lib/configs/main_web.dart",
9094
"args": [
95+
"--wasm",
9196
"--dart-define",
9297
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
9398
"--web-header",
@@ -106,6 +111,7 @@
106111
"deviceId": "chrome",
107112
"program": "lib/configs/main_web.dart",
108113
"args": [
114+
"--wasm",
109115
"--dart-define",
110116
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
111117
"--web-header",
@@ -124,6 +130,7 @@
124130
"deviceId": "chrome",
125131
"program": "lib/configs/main_web.dart",
126132
"args": [
133+
"--wasm",
127134
"--dart-define",
128135
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
129136
"--web-header",
@@ -142,6 +149,7 @@
142149
"deviceId": "chrome",
143150
"program": "lib/configs/main_web.dart",
144151
"args": [
152+
"--wasm",
145153
"--dart-define",
146154
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
147155
"--web-header",
@@ -160,6 +168,7 @@
160168
"deviceId": "chrome",
161169
"program": "lib/configs/main_web.dart",
162170
"args": [
171+
"--wasm",
163172
"--dart-define",
164173
"SENTRY_DSN=REPLACE_WITH_SENTRY_DSN_URL",
165174
"--web-header",

CONTRIBUTING.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
First off, thanks for taking the time to contribute! ❤️
44

55
* [Contributing to Catalyst Voices](#contributing-to-catalyst-voices)
6-
* [Code of Conduct](#code-of-conduct)
7-
* [I Have a Question](#i-have-a-question)
8-
* [I Want To Contribute](#i-want-to-contribute)
9-
* [Reporting Bugs](#reporting-bugs)
10-
* [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11-
* [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12-
* [Suggesting Enhancements](#suggesting-enhancements)
13-
* [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14-
* [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15-
* [Your First Code Contribution](#your-first-code-contribution)
16-
* [Improving The Documentation](#improving-the-documentation)
17-
* [Style guides](#style-guides)
18-
* [Rust](#rust)
19-
* [Dart](#dart)
20-
* [Flutter](#flutter)
21-
* [Commit Messages](#commit-messages)
6+
* [Code of Conduct](#code-of-conduct)
7+
* [I Have a Question](#i-have-a-question)
8+
* [I Want To Contribute](#i-want-to-contribute)
9+
* [Reporting Bugs](#reporting-bugs)
10+
* [Before Submitting a Bug Report](#before-submitting-a-bug-report)
11+
* [How Do I Submit a Good Bug Report?](#how-do-i-submit-a-good-bug-report)
12+
* [Suggesting Enhancements](#suggesting-enhancements)
13+
* [Before Submitting an Enhancement](#before-submitting-an-enhancement)
14+
* [How Do I Submit a Good Enhancement Suggestion?](#how-do-i-submit-a-good-enhancement-suggestion)
15+
* [Your First Code Contribution](#your-first-code-contribution)
16+
* [Improving The Documentation](#improving-the-documentation)
17+
* [Style guides](#style-guides)
18+
* [Rust](#rust)
19+
* [Dart](#dart)
20+
* [Flutter](#flutter)
21+
* [Commit Messages](#commit-messages)
2222

2323
All types of contributions are encouraged and valued.
2424
Please make sure to read the relevant section before making your contribution.
@@ -75,11 +75,11 @@ Please complete the following steps in advance to help us fix any potential bug
7575
* Also make sure to search the internet (including Stack Overflow)
7676
to see if users outside the GitHub community have discussed the issue.
7777
* Collect information about the bug:
78-
* Stack trace (Traceback)
79-
* OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
80-
* Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
81-
* Possibly your input and the output
82-
* Can you reliably reproduce the issue?
78+
* Stack trace (Traceback)
79+
* OS, Platform and Version (Windows, Linux, macOS, x86, ARM)
80+
* Version of the interpreter, compiler, SDK, runtime environment, package manager, depending on what seems relevant.
81+
* Possibly your input and the output
82+
* Can you reliably reproduce the issue?
8383
And can you also reproduce it with older versions?
8484

8585
#### How Do I Submit a Good Bug Report?

Earthfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
VERSION 0.8
22

3-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:v3.5.20 AS mdlint-ci
4-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:v3.5.20 AS cspell-ci
5-
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:v3.5.20 AS postgresql-ci
3+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/mdlint:master AS mdlint-ci
4+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/cspell:master AS cspell-ci
5+
IMPORT github.com/input-output-hk/catalyst-ci/earthly/postgresql:master AS postgresql-ci
66

77
ARG --global REGISTRY="harbor.shared-services.projectcatalyst.io/dockerhub/library"
88
FROM ${REGISTRY}/debian:stable-slim

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
Welcome to the Catalyst Voices mono repo, where we manage and maintain the interconnected projects.
66

77
* [Catalyst Voices](#catalyst-voices)
8-
* [Overview](#overview)
9-
* [Getting Started](#getting-started)
10-
* [Projects](#projects)
11-
* [Athena](#athena)
12-
* [Catalyst Voices](#catalyst-voices-1)
13-
* [Catalyst Data Gateway](#catalyst-data-gateway)
14-
* [Catalyst Voices Packages](#catalyst-voices-packages)
15-
* [Development](#development)
16-
* [Contributing](#contributing)
17-
* [License](#license)
8+
* [Overview](#overview)
9+
* [Getting Started](#getting-started)
10+
* [Projects](#projects)
11+
* [Athena](#athena)
12+
* [Catalyst Voices](#catalyst-voices-1)
13+
* [Catalyst Data Gateway](#catalyst-data-gateway)
14+
* [Catalyst Voices Packages](#catalyst-voices-packages)
15+
* [Development](#development)
16+
* [Contributing](#contributing)
17+
* [License](#license)
1818

1919
## Overview
2020

athena/.gitignore

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

athena/Cargo.toml

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

athena/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

athena/src/main.rs

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

0 commit comments

Comments
 (0)