Skip to content
Extraits de code Groupes Projets

Dev

Fusionnées Guillaume S a demandé de fusionner dev vers main
Affichage du commit fd0391be
Suivant
Afficher la dernière version
1 fichier
+ 32
2
Comparer les modifications
  • Côte à côte
  • En ligne
+ 32
2
# the-software-graph
# Software Graph
 
 
[TOC]
 
 
## Architecture
 
 
```mermaid
 
%%{ init : { "flowchart" : { "curve" : "stepAfter" }}}%%
 
 
flowchart BT;
 
subgraph Containers
 
B(Backend FastAPI<br>:8000)
 
F([Frontend Svelte<br>:5173])
 
R[(Redis Cache<br>:6379)]
 
N[(Neo4j Graph Database<br>:7474<br>:7687)]
 
end
 
B---F
 
B---R
 
B---N
 
subgraph Volumes
 
VB[Volume Backend Code]
 
VF[Volume Frontend Code]
 
VN[Volume Neo4j data]
 
end
 
VB---B
 
VF---F
 
VN---N
 
 
 
```
 
## En cas d'erreur
## En cas d'erreur
`neo4j | Folder /data is not accessible for user: 7474 or group 7474 or groups 7474, this is commonly a file permissions issue on the mounted folder.`
`neo4j | Folder /data is not accessible for user: 7474 or group 7474 or groups 7474, this is commonly a file permissions issue on the mounted folder.`
Solution:
Solution:
`sudo chmod -R 777 neo4j/data`
`sudo chmod -R 777 neo4j/data`
\ No newline at end of file
Chargement en cours