Mise à jour RabbitMq

This commit is contained in:
2025-10-14 09:56:55 +02:00
parent 803be5cd44
commit 4bec559bfd
3 changed files with 32 additions and 4 deletions

View File

@@ -382,11 +382,12 @@ create table composition
create table article create table article
( (
articles_id integer, articles_id integer,
article text article text,
agrimer int,
prix_revient numeric(8, 2) prix_revient numeric(8, 2)
); );
insert into article (article) values insert into article (article, agrimer) values
('aubergine', 57231901), ('aubergine', 57231901),
('artichaut', 57221689), ('artichaut', 57221689),
('ail violet', 57225792), ('ail violet', 57225792),
@@ -405,7 +406,6 @@ insert into article (article) values
('chou fleur', 453002), ('chou fleur', 453002),
('chou rave', 4740201), ('chou rave', 4740201),
('chou rouge', 2040201), ('chou rouge', 2040201),
('claytone / pourpier'),
('concombre', 57222102), ('concombre', 57222102),
('courge butternut', 57231340), ('courge butternut', 57231340),
('courge potimarron', 57231297), ('courge potimarron', 57231297),

View File

@@ -342,7 +342,7 @@ services:
- metabase - metabase
rabbitmq: rabbitmq:
image: rabbitmq:3.13-management image: rabbitmq:4.1.4-management
ports: ports:
- "5672:5672" # AMQP - "5672:5672" # AMQP
- "1883:1883" # MQTT - "1883:1883" # MQTT
@@ -430,6 +430,7 @@ volumes:
prometheus: prometheus:
grafana: grafana:
superset_home: superset_home:
rabbitmq_data:
configs: configs:
pgadmin_config: pgadmin_config:

27
data/index.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html>
<head>
<title>Scalar API Reference</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1" />
</head>
<body>
<div id="app"></div>
<!-- Load the Script -->
<script src="https://cdn.jsdelivr.net/npm/@scalar/api-reference"></script>
<!-- Initialize the Scalar API Reference -->
<script>
Scalar.createApiReference('#app', {
// The URL of the OpenAPI/Swagger document
url: 'https://registry.scalar.com/@scalar/apis/galaxy/latest?format=json',
// Avoid CORS issues
proxyUrl: 'https://proxy.scalar.com',
})
</script>
</body>
</html>