Skip to content
Open
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
a662b79
Merge pull request #528 from 42core-team/dev
PaulicStudios Feb 8, 2026
f28d926
Merge pull request #534 from 42core-team/dev
PaulicStudios Feb 12, 2026
507ece0
Merge pull request #580 from 42core-team/dev
Peu77 Mar 13, 2026
a6e5af0
refactor: update documentation for GitHub service to reflect transiti…
Peu77 Apr 3, 2026
3dc279e
remove old nestjs github-service project
Peu77 Apr 3, 2026
e7334eb
feat: add configuration for GitHub service using Effect
Peu77 Apr 3, 2026
09e5eac
feat: implement RabbitMQ service using Effect
Peu77 Apr 3, 2026
df701d9
feat: add decryption utility using Effect and CryptoJS
Peu77 Apr 3, 2026
54aa375
update dockerfile in github-service to use bun
Peu77 Apr 3, 2026
24ff82e
implement GitHub client with API methods and error handling using effect
Peu77 Apr 3, 2026
4ba6f00
implement main application layer with GitHub and RabbitMQ integration…
Peu77 Apr 3, 2026
41052c0
add message schemas and handlers for GitHub repository operations
Peu77 Apr 3, 2026
e20011d
refactor: update package.json scripts and dependencies for Bun integr…
Peu77 Apr 3, 2026
8ba8aa5
add: create bun.lock file for dependency management and workspace con…
Peu77 Apr 3, 2026
a538a2f
Merge remote-tracking branch 'origin/dev' into refactor-github-servic…
Peu77 Apr 3, 2026
bca6231
refactor: streamline InfraLayer and update message consumption logic
Peu77 Apr 3, 2026
294e235
integrate @effect/eslint-plugin for enhanced linting support
Peu77 Apr 3, 2026
2f912ba
add unit tests for RepoUtilsService methods
Peu77 Apr 3, 2026
2a93ffd
refactor: update test paths and script commands in package.json and t…
Peu77 Apr 3, 2026
1a242b8
refactor: improve error logging in message consumption logic
Peu77 Apr 3, 2026
e4d0ee3
remove bad comments
Peu77 Apr 3, 2026
7ddc7b9
improve code formatting and structure in GitHub client
Peu77 Apr 3, 2026
eaff58d
format code
Peu77 Apr 3, 2026
3b9ceb9
remove unnecessary cast
Peu77 Apr 3, 2026
50d6169
refactor: enhance logging attributes in pushToTeamRepo function
Peu77 Apr 4, 2026
5130eb7
format
Peu77 Apr 4, 2026
99b1aa1
refactor: improve error handling in decryptSecret function
Peu77 Apr 4, 2026
cde89fe
replace catchAll with tapError for improved error handling
Peu77 Apr 4, 2026
f2d3faf
fix: prevent double execution of eff in withRetries after rate-limit …
Copilot Apr 4, 2026
8bb57c4
refactor: update lint command and improve error handling in program.ts
Peu77 Apr 4, 2026
e6efc42
Merge remote-tracking branch 'origin/refactor-github-service-to-effec…
Peu77 Apr 4, 2026
a0693c0
refactor: update lint command and improve error handling in program.ts
Peu77 Apr 4, 2026
531275b
implement retry logic for message sending in RabbitMQ consumer
Peu77 Apr 4, 2026
a5cab58
use replaceAll for path normalization in repoUtils
Peu77 Apr 4, 2026
7177712
refactor: simplify user addition to repository logic in handleAddUser…
Peu77 Apr 4, 2026
6e2583e
enhance RabbitMQ connection and channel management with improved erro…
Peu77 Apr 4, 2026
1688462
integrate OpenTelemetry for metrics and tracing in GitHub service
Peu77 Apr 4, 2026
220f94a
add observability configuration for GitHub service with Prometheus, T…
Peu77 Apr 4, 2026
6621314
Merge pull request #616 from 42core-team/dev
PaulicStudios Apr 6, 2026
72c6195
Merge pull request #620 from 42core-team/dev
PaulicStudios Apr 6, 2026
98f2803
Merge pull request #622 from 42core-team/dev
PaulicStudios Apr 6, 2026
136b3bb
Merge pull request #641 from 42core-team/dev
PaulicStudios Apr 16, 2026
a0f9dfb
remove devcontainer
Peu77 Jun 23, 2026
3a18565
migrate GitHub Service workflows and pre-commit hooks from pnpm to Bun
Peu77 Jun 23, 2026
17fbb51
Merge branch 'main' into refactor-github-service-to-effect
Peu77 Jun 23, 2026
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
45 changes: 45 additions & 0 deletions .devcontainer/docker-compose.yml
Comment thread
Peu77 marked this conversation as resolved.
Outdated
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,53 @@ services:
networks:
- development-network

prometheus:
image: prom/prometheus:v3.5.0
restart: unless-stopped
ports:
- "9090:9090"
command:
- "--config.file=/etc/prometheus/prometheus.yml"
volumes:
- ./prometheus/prometheus.yml:/etc/prometheus/prometheus.yml:ro
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- development-network

tempo:
image: grafana/tempo:2.8.1
restart: unless-stopped
command:
- "-config.file=/etc/tempo/tempo.yml"
ports:
- "3200:3200"
- "4318:4318"
volumes:
- ./tempo/tempo.yml:/etc/tempo/tempo.yml:ro
networks:
- development-network

grafana:
image: grafana/grafana:12.1.1
restart: unless-stopped
ports:
- "3001:3000"
environment:
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: admin
volumes:
- grafana-data:/var/lib/grafana
- ./grafana/provisioning:/etc/grafana/provisioning:ro
depends_on:
- prometheus
- tempo
networks:
- development-network

networks:
development-network:

volumes:
postgres-data:
grafana-data:
12 changes: 12 additions & 0 deletions .devcontainer/grafana/provisioning/dashboards/dashboards.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: 1

providers:
- name: github-service-effect
orgId: 1
folder: GitHub Service
type: file
disableDeletion: false
editable: true
options:
path: /etc/grafana/provisioning/dashboards

Loading
Loading