Mise à jour RabbitMq
This commit is contained in:
@@ -382,11 +382,12 @@ create table composition
|
||||
create table article
|
||||
(
|
||||
articles_id integer,
|
||||
article text
|
||||
article text,
|
||||
agrimer int,
|
||||
prix_revient numeric(8, 2)
|
||||
);
|
||||
|
||||
insert into article (article) values
|
||||
insert into article (article, agrimer) values
|
||||
('aubergine', 57231901),
|
||||
('artichaut', 57221689),
|
||||
('ail violet', 57225792),
|
||||
@@ -405,7 +406,6 @@ insert into article (article) values
|
||||
('chou fleur', 453002),
|
||||
('chou rave', 4740201),
|
||||
('chou rouge', 2040201),
|
||||
('claytone / pourpier'),
|
||||
('concombre', 57222102),
|
||||
('courge butternut', 57231340),
|
||||
('courge potimarron', 57231297),
|
||||
|
||||
@@ -342,7 +342,7 @@ services:
|
||||
- metabase
|
||||
|
||||
rabbitmq:
|
||||
image: rabbitmq:3.13-management
|
||||
image: rabbitmq:4.1.4-management
|
||||
ports:
|
||||
- "5672:5672" # AMQP
|
||||
- "1883:1883" # MQTT
|
||||
@@ -430,6 +430,7 @@ volumes:
|
||||
prometheus:
|
||||
grafana:
|
||||
superset_home:
|
||||
rabbitmq_data:
|
||||
|
||||
configs:
|
||||
pgadmin_config:
|
||||
|
||||
27
data/index.html
Normal file
27
data/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user