added readme for Hive Mind
This commit is contained in:
parent
b0d39f6f03
commit
78eda5f350
21
README.md
21
README.md
|
@ -1,11 +1,20 @@
|
||||||
# Hive Emulator
|
# Hive Emulator
|
||||||
|
|
||||||
|
- [Hive Emulator](#hive-emulator)
|
||||||
|
- [About](#about)
|
||||||
|
- [Installation](#installation)
|
||||||
|
- [Redis](#redis)
|
||||||
|
- [Map Component](#map-component)
|
||||||
|
- [Communiction Control](#communiction-control)
|
||||||
|
- [Hive Mind](#hive-mind)
|
||||||
|
- [Usage](#usage)
|
||||||
|
|
||||||
## About
|
## About
|
||||||
This is a demo project used in the Uni DevOps course
|
This is a demo project used in the Uni DevOps course
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
### Run Redis
|
### Redis
|
||||||
```bash
|
```bash
|
||||||
docker run --name redis -d -p 6379:6379 redis
|
docker run --name redis -d -p 6379:6379 redis
|
||||||
```
|
```
|
||||||
|
@ -23,9 +32,17 @@ npm run dev
|
||||||
```bash
|
```bash
|
||||||
cd src/CommunicationControl
|
cd src/CommunicationControl
|
||||||
|
|
||||||
dotnet build DevOpsProject/
|
dotnet run --project DevOpsProject/DevOpsProject.CommunicationControl.API.csproj
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Hive Mind
|
||||||
|
```bash
|
||||||
|
cd src/CommunicationControl
|
||||||
|
|
||||||
|
dotnet run --project DevOpsProject/DevOpsProject.HiveMind.API.csproj
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
1. Map Control is available at http://localhost:3000
|
1. Map Control is available at http://localhost:3000
|
||||||
|
|
Loading…
Reference in New Issue