Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mhrimaz committed Nov 29, 2023
2 parents 377010f + 33411fa commit cd63405
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ AAS Brain features solutions and tries to overcome existing limitations and prop
**NOTE: Docker commands and documentations will be provided.**

```bash
# pull the latest image
docker pull mhrimaz/aas-brain-concept-description-repo
```

Simple deployment:
```bash
# pull the latest image
docker run mhrimaz/aas-brain-concept-description-repo
docker run --name=cd-redis -p6767:6379 redis:7.0-alpine
docker run -e DB_URI="redis://cd-redis:6379" --link=cd-redis -p9393:80 mhrimaz/aas-brain-concept-description-repo
```

### RestAPI and beyond
Expand All @@ -47,6 +47,18 @@ Don't mix GraphQL with GQL (Graph Query Language). GraphQL is not a query langua

### Backends

```mermaid
flowchart LR
Application --> GraphQL[GraphQL]
Application --> REST[REST API]
GraphQL --> Repo[Concept Description Repository]
REST --> Repo[Concept Description Repository]
Repo --> DB1[Redis]
Repo --> DB2[GraphDB]
Repo --> DB3[Neo4j]
Repo --> DB4[MongoDB]
Repo --> DB5[MongoDB]
```
**Which backend is the best?**

Which backend is the best? The answer is obvious! It depends :)
Expand Down

0 comments on commit cd63405

Please sign in to comment.