Skip to content
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
6 changes: 5 additions & 1 deletion .example.env
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ DAILY_QUOTA=100000
# Miceallenous variables
RESEND_API_KEY=resend-secret
FRONTEND_URL=http://localhost:5173
USER_VERIFICATION_ACTIVE=False
USER_VERIFICATION_ACTIVE=False

# Metric/Monitoring variables
PROMETHEUS_PORT=9090
GRAFANA_PORT=5252
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.1.0
23 changes: 23 additions & 0 deletions dev-infrastructure/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,29 @@ services:
ports:
- ${ADMINER_PORT}:8080

prometheus:
image: prom/prometheus
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- prometheus_data:/prometheus
- ./prometheus.yml:/etc/prometheus/prometheus.yml
ports:
- ${PROMETHEUS_PORT}:9090

grafana:
image: grafana/grafana-enterprise
environment:
GF_SECURITY_ADMIN_USER: ${GRAFANA_ADMIN_USER}
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_ADMIN_PASSWORD}
volumes:
- ./grafana/provisioning/:/etc/grafana/provisioning/
- ./grafana/dashboards/:/var/lib/grafana/dashboards/
ports:
- ${GRAFANA_PORT}:3000

volumes:
minio_data:
driver: local
prometheus_data:
driver: local
Loading