ci: docker_tag=ext chore: sync ignores, logging and backups
All checks were successful
Docker Build and Push (ext) / build (push) Successful in 1m16s
All checks were successful
Docker Build and Push (ext) / build (push) Successful in 1m16s
This commit is contained in:
parent
310428dc42
commit
33853c7a6a
25
.env.exemple
25
.env.exemple
@ -1,25 +0,0 @@
|
||||
BOOTSTRAPURL=wss://dev3.4nkweb.com/ws/
|
||||
|
||||
# WS
|
||||
# RELAY_URLS=wss://demo.4nkweb.com/ws
|
||||
RELAY_URLS=ws://sdk_relay:8090,wss://dev3.4nkweb.com/ws/
|
||||
|
||||
# SIGNER_WS_URL=ws://dev4.4nkweb.com/signer/
|
||||
SIGNER_WS_URL=ws://dev3.4nkweb.com
|
||||
SIGNER_BASE_URL=https://dev3.4nkweb.com
|
||||
|
||||
core_url="http://bitcoin:38332"
|
||||
ws_url="0.0.0.0:8090"
|
||||
wallet_name="default"
|
||||
network="signet"
|
||||
blindbit_url="http://blindbit:8000"
|
||||
zmq_url="tcp://bitcoin:29000"
|
||||
storage="https://dev4.4nkweb.com/storage"
|
||||
data_dir="/home/bitcoin/.4nk"
|
||||
bitcoin_data_dir="/home/bitcoin/.bitcoin"
|
||||
|
||||
|
||||
# ===================== /!\ donnée sensible =======================
|
||||
|
||||
SIGNER_API_KEY=your-api-key-change-this
|
||||
VITE_JWT_SECRET_KEY=52b3d77617bb00982dfee15b08effd52cfe5b2e69b2f61cc4848cfe1e98c0bc9
|
@ -40,5 +40,3 @@ jobs:
|
||||
push: true
|
||||
tags: |
|
||||
git.4nkweb.com/4nk/ihm_client:${{ env.DOCKER_TAG }}
|
||||
|
||||
|
||||
|
6
.gitignore
vendored
6
.gitignore
vendored
@ -17,6 +17,10 @@ npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
.cargo/
|
||||
Cargo.lock
|
||||
*/.cargo/
|
||||
*/Cargo.lock
|
||||
# Build
|
||||
dist/
|
||||
build/
|
||||
@ -33,4 +37,4 @@ Thumbs.db
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
*.tmp
|
||||
*.tmp.cursor-server
|
||||
|
@ -7,7 +7,7 @@
|
||||
## Dépendances
|
||||
- `sdk_signer` via `VITE_SIGNER_URL`.
|
||||
- `sdk_relay` via `VITE_WS_URL`.
|
||||
- Backend `lecoffre-back-mini` via `VITE_API_BASE_URL`.
|
||||
- Backend `lecoffre-back-mini` via `VITE_API_BASE_URL`.(sur dev3.4nkweb.com)
|
||||
|
||||
## Réseau et ports
|
||||
- Exposé derrière Nginx via `https://dev4.4nkweb.com/`.
|
||||
|
@ -5,7 +5,6 @@ Fournir l’interface d’interaction utilisateur (iframe) pour les flux métier
|
||||
|
||||
## Parcours clés
|
||||
- Authentification via redirection IdNot (depuis `lecoffre-front`).
|
||||
- Connexion au `sdk_signer` pour opérations signées.
|
||||
- Échanges temps réel via `sdk_relay` (WebSocket).
|
||||
|
||||
## Rôles
|
||||
|
@ -234,17 +234,17 @@ body {
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word;
|
||||
background-color: #f1f1f1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.message-container .message {
|
||||
align-self: flex-start;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.message-container .message.user {
|
||||
align-self: flex-end;
|
||||
margin-left: auto;
|
||||
align-self: flex-end;
|
||||
margin-left: auto;
|
||||
color: white;
|
||||
}
|
||||
|
||||
@ -703,23 +703,23 @@ body {
|
||||
}
|
||||
|
||||
.new-request-btn {
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.new-request-btn:hover {
|
||||
background-color: #45a049;
|
||||
background-color: #45a049;
|
||||
}
|
||||
|
||||
.header-buttons {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
@ -762,7 +762,7 @@ body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: white;
|
||||
z-index: 1000;
|
||||
z-index: 1000;
|
||||
padding: 20px;
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
@ -816,7 +816,7 @@ body {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
flex-direction: row;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.close-btn {
|
||||
@ -912,12 +912,12 @@ body {
|
||||
}
|
||||
|
||||
.submit-btn {
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
margin-left: 47%;
|
||||
margin-top: 20px;
|
||||
}
|
||||
@ -1046,8 +1046,8 @@ body {
|
||||
|
||||
/* Style pour les labels */
|
||||
.form-group label {
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Style pour les champs de saisie */
|
||||
@ -1061,17 +1061,17 @@ body {
|
||||
}
|
||||
|
||||
.add-members-btn {
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
background-color: #4caf50;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
margin-top: 10px; /* Espacement au-dessus du bouton */
|
||||
}
|
||||
|
||||
.add-members-btn:hover {
|
||||
background-color: #45a049;
|
||||
background-color: #45a049;
|
||||
}
|
||||
|
||||
/* Styles pour l'overlay et la modale */
|
||||
@ -1137,11 +1137,11 @@ body {
|
||||
}
|
||||
|
||||
.cancel-btn {
|
||||
background-color: #df2020;
|
||||
color: white;
|
||||
background-color: #df2020;
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
padding: 8px 16px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user