Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.6.0 #51

Merged
merged 6 commits into from
Feb 20, 2025
Merged
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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file
# These owners will be the default owners for everything in the repo, Unless a later match takes precedence
* @hero101
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: "BUG: "
labels: "bug, excalidraw, whiteboard, collaboration"
labels: "bug, excalidraw, whiteboard, collaboration, Atlas Team"
assignees: ""
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/epic.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Epic
about: A theme of work that contain sub-tasks required to complete the larger goal / larger user-story
title: ""
labels: "epic, excalidraw, whiteboard, collaboration"
labels: "epic, excalidraw, whiteboard, collaboration, Atlas Team"
assignees: ""
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: ""
labels: "enhancement, excalidraw, whiteboard, collaboration"
labels: "enhancement, excalidraw, whiteboard, collaboration, Atlas Team"
assignees: ""
---

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/user_story.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: User Story
about: A valuable increment of functionality, testable by the users
title: ""
labels: "user story, excalidraw, whiteboard, collaboration"
labels: "user story, excalidraw, whiteboard, collaboration, Atlas Team"
assignees: ""
---

Expand Down
14 changes: 11 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,23 @@ monitoring:
settings:
# application level settings
application:
# On which port the server will be running
port: ${PORT}:4002
# queue
queue: ${QUEUE}:alkemio-whiteboards
# MILLISECONDS wait time for a response after a request on the message queue
queue_response_timeout: ${QUEUE_RESPONSE_TIMEOUT}:10000
queue_response_timeout: ${QUEUE_RESPONSE_TIMEOUT}:5000
# How many times the requests to retry before failing
queue_request_retries: ${QUEUE_REQUEST_RETRIES}:3
# How many ms without a pong packet to consider the connection closed
ping_timeout: ${PING_TIMEOUT}:40000
# How many ms before sending a new ping packet
ping_interval: ${PING_INTERVAL}:30000
# How many bytes or characters a message can be, before closing the session (to avoid DoS).
max_http_buffer_size: ${MAX_HTTP_BUFFER_SIZE}:4e6
# the collaboration experience
collaboration:
enabled: ${ENABLED}:true
#
port: ${COLLABORATION_PORT}:4002
# the window in which contributions are accepted to be counted towards a single contribution event;
# time is in SECONDS
contribution_window: ${CONTRIBUTION_WINDOW}:600
Expand Down
Loading
Loading