You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Below is a high-level view of the repository and its main components:
13
+
```
14
+
.
15
+
├── config # Contains configuration files for the Simapp service, such as runtime parameters and behavior definitions (simapp.yaml).
16
+
│ └── simapp.yaml
17
+
├── Dockerfile
18
+
├── Dockerfile.fast
19
+
├── go.mod
20
+
├── go.mod.license
21
+
├── go.sum
22
+
├── go.sum.license
23
+
├── LICENSES
24
+
│ └── Apache-2.0.txt
25
+
├── logger # Provides the logging setup and configuration used across the application.
26
+
│ └── logger.go
27
+
├── Makefile # Provides commands for building, testing, and cleaning up the project.
28
+
├── README.md
29
+
├── simapp.go # Main entry point of the Simapp service. Initializes the simulator, loads configuration, and starts execution.
30
+
├── Taskfile.yml # Provides commands for building, testing, and cleaning up the project.
31
+
├── test-mirror.txt
32
+
├── VERSION
33
+
└── VERSION.license
34
+
35
+
4 directories, 16 files
36
+
```
37
+
38
+
39
+
## Configuration and Deployment
40
+
41
+
**Docker**
42
+
43
+
To build the container image:
44
+
```
45
+
task mod-start
46
+
task build
47
+
task docker-build-fast
48
+
```
49
+
50
+
**Kubernetes**
51
+
52
+
The standard deployment uses Helm charts from the Aether project. The version of the Chart can be found in the OnRamp repository in the `vars/main.yml` file.
0 commit comments