Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c61b60e
#452: first round of changes
basmasking Nov 28, 2025
37c0d2b
#452: domain and integrations working
basmasking Nov 28, 2025
bccbeff
#452: stash in git for now
basmasking Dec 12, 2025
7ef95eb
#452: updated domain and integrations
petermasking Dec 31, 2025
6edabd1
#452: updated webui
petermasking Dec 31, 2025
46d44fd
#452: first running version
petermasking Dec 31, 2025
76fc744
#452: separate errors per feature
basmasking Jan 2, 2026
bf3bd49
#452: resources are replaced by theshelf
basmasking Jan 2, 2026
6723e84
#452: ids are uuid
basmasking Jan 2, 2026
9326524
#452: updated TheShelf
petermasking Jan 12, 2026
ddb861b
#452: updated test for TheShelf
petermasking Jan 15, 2026
6f3d5f5
#452: first draf of webui restructuring
petermasking Jan 15, 2026
40a84ed
#452: fixed linting issues
petermasking Jan 15, 2026
57949b4
#452: refactored compile script
petermasking Jan 15, 2026
7ba99cd
#452: S3 implementation for filestore
basmasking Jan 16, 2026
14fbceb
#452: updated dependencies
petermasking Jan 16, 2026
300435a
#452: fixed home route
petermasking Jan 21, 2026
ac0750b
#452: updated account forms
petermasking Jan 21, 2026
f55fd55
#31: fixed double loading indicator
petermasking Jan 21, 2026
bcfa109
#452: loading and result improvements
petermasking Jan 22, 2026
9bd20c5
#452: implemented remove post confirmation
petermasking Jan 23, 2026
a37ee1e
#452: updated dependencies
petermasking Jan 23, 2026
55f2612
#452: updated tabs to use the new design system tabs
petermasking Jan 23, 2026
b5b48fb
#452: updated integrations to use the new connection manager
petermasking Jan 23, 2026
e3b8873
#452: updated logo
petermasking Jan 27, 2026
7972372
#452: updated react-toolkit
petermasking Jan 27, 2026
6f78093
#452: renamed features
petermasking Jan 27, 2026
9fdb443
#452: fixed linting issues
petermasking Jan 27, 2026
5906711
#452: updated editor style
petermasking Jan 27, 2026
de25763
#452: refactored menu to use the design system component
petermasking Jan 28, 2026
b5d22be
#452: restored identity property
petermasking Jan 28, 2026
2a85288
#452: updated packages
petermasking Jan 28, 2026
d8b7dc2
Merge branch 'main' into 452-setup-repository-to-support-large-scale-…
basmasking Jan 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
44 changes: 18 additions & 26 deletions example.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,41 @@
JITAR_TRUST_KEY="development"

# DATABASE (memory | mongodb)
DATABASE_IMPLEMENTATION="mongodb"
DATABASE_DRIVER="mongodb"
MONGODB_CONNECTION_STRING="mongodb://development:development@localhost:27017"
MONGODB_DATABASE_NAME="comify"

# EVENT BROKER (memory)
EVENT_BROKER_IMPLEMENTATION="memory"
EVENT_BROKER_DRIVER="memory"

# FILE STORE (memory | minio)
FILE_STORE_IMPLEMENTATION="minio"
MINIO_END_POINT="localhost"
MINIO_PORT_NUMBER=9000
MINIO_USE_SSL=false
MINIO_ROOT_USER="development"
MINIO_ROOT_PASSWORD="development"
# FILE STORE (memory | s3)
FILE_STORE_DRIVER="s3"
S3_END_POINT="http://localhost:9000"
S3_REGION="local"
S3_BUCKET_NAME="comify"
S3_ROOT_USER="development"
S3_ROOT_PASSWORD="development"

# AUTHENTICATION (openid)
AUTHENTICATION_CLIENT_PATH="/identify"
AUTHENTICATION_IMPLEMENTATION="openid"
AUTHENTICATION_DRIVER="openid"
OPENID_ISSUER="http://localhost:8080/realms/comify"
OPENID_CLIENT_ID="openid"
OPENID_CLIENT_SECRET=""
OPENID_REDIRECT_PATH="/rpc/domain/authentication/login"
OPENID_ALLOW_INSECURE_REQUESTS=false

# HTTP (fetch)
HTTP_IMPLEMENTATION="fetch"

# LOGGING (void | console)
LOGGING_IMPLEMENTATION="console"
LOGGING_DEBUG_ENABLED=true
# LOGGING (database | console | void)
LOGGING_DRIVER="console"
LOGGING_LEVEL="INFO"
LOGGING_DB_RECORD_TYPE="logs"

# NOTIFICATIN (memory | webpush)
NOTIFICATION_IMPLEMENTATION="memory"
NOTIFICATION_DRIVER="memory"
# WEBPUSH_VAPID_SUBJECT=""
# WEBPUSH_VAPID_PUBLIC_KEY=""
# WEBPUSH_VAPID_PRIVATE_KEY=""

# SANITIZATION (sanitize-html)
SANITIZATION_IMPLEMENTATION="sanitize-html"

# VALIDATION (zod)
VALIDATION_IMPLEMENTATION="zod"

# ########################################################################
# DOCKER
# ########################################################################
Expand All @@ -67,9 +59,9 @@ MONGO_EXPRESS_PASSWORD="development"

# MINIO
MINIO_ADMIN_PORT_NUMBER=9001
# MINIO_PORT_NUMBER=specified in the application section
# MINIO_ACCESS_KEY=specified in the application section
# MINIO_SECRET_KEY=specified in the application section
MINIO_PORT_NUMBER=9000
MINIO_ROOT_USER="development"
MINIO_ROOT_PASSWORD="development"

# KEYCLOAK
KEYCLOAK_HTTP_ENABLED="true"
Expand Down
Loading
Loading